class IncludeFileNotFoundError

Public Class Methods

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

Public Instance Methods

info() click to toggle source
# File lib/compiler_error.rb, line 64
def info
        "'#{@filename}' : include file not found: "
end