In Files

Parent

Methods

Voodoo::Parser::Error

Base class for errors reported from the parser. This provides methods to get the name of the input being processed, as well as the start_line, start_column, and text of the code that triggered the error.

Attributes

input_name[R]
start_column[R]
start_line[R]
text[R]

Public Class Methods

new(message, input_name, start_line, start_column, text) click to toggle source
# File voodoo/parser.rb, line 45
def initialize message, input_name, start_line, start_column, text
  super message
  @input_name = input_name
  @start_line = start_line
  @start_column = start_column
  @text = text
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.