class NodeNotFoundError

Public Class Methods

new(ast, name) click to toggle source
Calls superclass method CompilerError::new
# File lib/compiler_error.rb, line 96
def initialize ast, name
        super ast.position
        @name = name
end

Public Instance Methods

info() click to toggle source
# File lib/compiler_error.rb, line 101
def info
        "'#{@name}' : undefined node"
end