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

column[R]
lineno[R]

Public Class Methods

new(error, lineno, column) click to toggle source
Calls superclass method
# File lib/syntax_tree/parser.rb, line 12
def initialize(error, lineno, column)
  super(error)
  @lineno = lineno
  @column = column
end