Method: HamlLint::Tree::ScriptNode#parsed_script

Defined in:
lib/haml_lint/tree/script_node.rb

#parsed_scriptParsedRuby

The Ruby script contents parsed into a syntax tree.

Returns:

  • (ParsedRuby)

    syntax tree in the form returned by Parser gem

[View source]

11
12
13
14
15
16
17
18
19
# File 'lib/haml_lint/tree/script_node.rb', line 11

def parsed_script
  statement =
    if children.empty?
      script
    else
      "#{script}#{@value[:keyword] == 'case' ? ';when 0;end' : ';end'}"
    end
  HamlLint::ParsedRuby.new(HamlLint::RubyParser.new.parse(statement))
end