Class: HamlLint::Adapter::Haml5

Inherits:
HamlLint::Adapter show all
Defined in:
lib/haml_lint/adapter/haml_5.rb

Overview

Adapts the Haml::Parser from Haml 5 for use in HamlLint :reek:UncommunicativeModuleName

Instance Method Summary collapse

Methods inherited from HamlLint::Adapter

detect_class

Constructor Details

#initialize(source, options = Haml::Options.new) ⇒ Haml5

Parses the specified Haml code into an abstract syntax tree

Examples:

HamlLint::Adapter::Haml5.new('%div')

Parameters:

  • source (String)

    Haml code to parse

  • options (Haml::Options) (defaults to: Haml::Options.new)


16
17
18
19
# File 'lib/haml_lint/adapter/haml_5.rb', line 16

def initialize(source, options = Haml::Options.new)
  @source = source
  @parser = Haml::Parser.new(options)
end

Instance Method Details

#parseHaml::Parser::ParseNode

Parses the source code into an abstract syntax tree

Examples:

HamlLint::Adapter::Haml5.new('%div').parse

Returns:

  • (Haml::Parser::ParseNode)

Raises:

  • (Haml::Error)


29
30
31
# File 'lib/haml_lint/adapter/haml_5.rb', line 29

def parse
  parser.call(source)
end