class TypeNotFoundError

Public Class Methods

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

Public Instance Methods

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