rubyx/lib/ast/operator_expressions.rb

39 lines
858 B
Ruby
Raw Normal View History

2014-05-05 09:02:02 +02:00
module Ast
# assignment, like operators are really function calls
class FuncallExpression < Expression
attr_reader :name, :args
def initialize name, args
@name , @args = name , args
end
def compile context
fun = Vm::FunctionCall.new( name , args.collect{ |a| a.compile(context) } )
fun.assign_function context
fun.load_args
fun.do_call
2014-05-06 20:36:28 +02:00
fun
end
2014-05-05 09:02:02 +02:00
def == other
compare other , [:name , :args]
end
end
class AssignmentExpression < Expression
attr_reader :assignee, :assigned
def initialize assignee, assigned
@assignee, @assigned = assignee, assigned
end
2014-05-10 09:58:25 +02:00
def compile context
var = @assigned.compile(context)
context.locals[@assignee] = var
end
2014-05-05 09:02:02 +02:00
def == other
compare other , [:assignee, :assigned]
end
end
end