Exception: MustacheRender::Mustache::Parser::SyntaxError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/mustache_render/mustache/parser.rb

Overview

A SyntaxError is raised when the Parser comes across unclosed tags, sections, illegal content in tags, or anything of that sort.

Instance Method Summary collapse

Constructor Details

#initialize(message, position) ⇒ SyntaxError

Returns a new instance of SyntaxError.



32
33
34
35
36
37
# File 'lib/mustache_render/mustache/parser.rb', line 32

def initialize(message, position)
  @message = message
  @lineno, @column, @line, _ = position
  @stripped_line = @line.strip
  @stripped_column = @column - (@line.size - @line.lstrip.size)
end

Instance Method Details

#to_sObject



39
40
41
42
43
44
45
46
# File 'lib/mustache_render/mustache/parser.rb', line 39

def to_s
  <<-EOF
  #{@message}
  Line #{@lineno}
  #{@stripped_line}
  #{' ' * @stripped_column}^
  EOF
end