Exception: Mustache::Parser::SyntaxError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/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.



30
31
32
33
34
35
# File 'lib/mustache/parser.rb', line 30

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



37
38
39
40
41
42
43
44
# File 'lib/mustache/parser.rb', line 37

def to_s
  "\#{@message}\n  Line \#{@lineno}\n    \#{@stripped_line}\n    \#{' ' * @stripped_column}^\n"
end