Sha256: b0c70515181abef4e85569c50efaa4351dc56b18c2674616a5b96fbeedc9f056

Contents?: true

Size: 1.09 KB

Versions: 15

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true
# Hamlit::Parser uses original Haml::Parser to generate Haml AST.
# hamlit/parser/haml_* are modules originally in haml gem.

require 'hamlit/parser/haml_error'
require 'hamlit/parser/haml_util'
require 'hamlit/parser/haml_buffer'
require 'hamlit/parser/haml_compiler'
require 'hamlit/parser/haml_parser'
require 'hamlit/parser/haml_helpers'
require 'hamlit/parser/haml_options'

module Hamlit
  class Parser
    AVAILABLE_OPTIONS = %i[
      autoclose
      escape_html
      escape_attrs
    ].freeze

    def initialize(options = {})
      @options = HamlOptions.defaults.dup
      AVAILABLE_OPTIONS.each do |key|
        @options[key] = options[key]
      end
    end

    def call(template)
      HamlParser.new(template, HamlOptions.new(@options)).parse
    rescue ::Hamlit::HamlError => e
      error_with_lineno(e)
    end

    private

    def error_with_lineno(error)
      return error if error.line

      trace = error.backtrace.first
      return error unless trace

      line = trace.match(/\d+\z/).to_s.to_i
      HamlSyntaxError.new(error.message, line)
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
hamlit-2.8.8 lib/hamlit/parser.rb
hamlit-2.8.7 lib/hamlit/parser.rb
hamlit-2.8.6 lib/hamlit/parser.rb
hamlit-2.8.5 lib/hamlit/parser.rb
hamlit-2.8.4 lib/hamlit/parser.rb
hamlit-2.8.3 lib/hamlit/parser.rb
hamlit-2.8.2 lib/hamlit/parser.rb
hamlit-2.8.1 lib/hamlit/parser.rb
hamlit-2.8.0 lib/hamlit/parser.rb
hamlit-2.7.5 lib/hamlit/parser.rb
hamlit-2.7.3 lib/hamlit/parser.rb
hamlit-2.7.2 lib/hamlit/parser.rb
hamlit-2.7.1 lib/hamlit/parser.rb
hamlit-2.7.0 lib/hamlit/parser.rb
hamlit-2.6.2 lib/hamlit/parser.rb