class SyntaxTree::Parser::ParseError
A special parser error so that we can get nice syntax displays on the error message when prettier prints out the results.
Attributes
Public Class Methods
Source
# File lib/syntax_tree/parser.rb, line 12 def initialize(error, lineno, column) super(error) @lineno = lineno @column = column end
Calls superclass method