Class: PlatformosCheck::SyntaxError

Inherits:
LiquidCheck show all
Defined in:
lib/platformos_check/checks/syntax_error.rb

Overview

Report Liquid syntax errors

Constant Summary

Constants inherited from Check

Check::CATEGORIES, Check::SEVERITIES, Check::SEVERITY_VALUES

Instance Attribute Summary

Attributes inherited from Check

#ignored_patterns, #offenses, #options, #platformos_app

Instance Method Summary collapse

Methods included from ChecksTracking

#inherited

Methods included from ParsingHelpers

#outside_of_strings

Methods inherited from Check

#==, #add_offense, all, can_disable, #can_disable?, categories, #categories, category, #code_name, doc, #doc, docs_url, #ignore!, #ignored?, #severity, severity, #severity=, #severity_value, severity_value, single_file, #single_file?, #to_s, #whole_platformos_app?

Methods included from JsonHelpers

#format_json_parse_error, #pretty_json

Instance Method Details

#on_document(node) ⇒ Object



10
11
12
13
14
# File 'lib/platformos_check/checks/syntax_error.rb', line 10

def on_document(node)
  node.app_file.warnings.each do |warning|
    add_exception_as_offense(warning, app_file: node.app_file)
  end
end

#on_error(exception) ⇒ Object



16
17
18
# File 'lib/platformos_check/checks/syntax_error.rb', line 16

def on_error(exception)
  add_exception_as_offense(exception, app_file: platformos_app[exception.template_name])
end