69 lines
1.3 KiB
Ruby
69 lines
1.3 KiB
Ruby
# collection of the simple ones, int and strings and such
|
|
|
|
module Ast
|
|
|
|
class IntegerExpression < Expression
|
|
attr_reader :value
|
|
def initialize val
|
|
@value = val
|
|
end
|
|
def inspect
|
|
self.class.name + ".new(" + value.to_s+ ")"
|
|
end
|
|
def to_s
|
|
value.to_s
|
|
end
|
|
def compile context , into
|
|
Vm::IntegerConstant.new value
|
|
end
|
|
def attributes
|
|
[:value]
|
|
end
|
|
end
|
|
|
|
class NameExpression < Expression
|
|
attr_reader :name
|
|
def initialize name
|
|
@name = name
|
|
end
|
|
# compiling a variable resolves it.
|
|
# if it wasn't defined, nli is returned
|
|
def compile context , into
|
|
context.locals[name]
|
|
end
|
|
def inspect
|
|
self.class.name + '.new("' + name + '")'
|
|
end
|
|
def to_s
|
|
name
|
|
end
|
|
def attributes
|
|
[:name]
|
|
end
|
|
end
|
|
|
|
class VariableExpression < NameExpression
|
|
end
|
|
class ModuleName < NameExpression
|
|
end
|
|
|
|
class StringExpression < Expression
|
|
attr_reader :string
|
|
def initialize str
|
|
@string = str
|
|
end
|
|
def inspect
|
|
self.class.name + '.new("' + string + '")'
|
|
end
|
|
|
|
def compile context , into
|
|
value = Vm::StringConstant.new(string)
|
|
context.program.add_object value
|
|
value
|
|
end
|
|
def attributes
|
|
[:string]
|
|
end
|
|
end
|
|
|
|
end |