rubyx/lib/ast/operator_expressions.rb
2014-05-05 10:13:49 +03:00

33 lines
770 B
Ruby

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
#puts "funcall #{self.inspect}"
fun.do_call
end
def == other
compare other , [:name , :args]
end
end
class AssignmentExpression < Expression
attr_reader :assignee, :assigned
def initialize assignee, assigned
@assignee, @assigned = assignee, assigned
end
def == other
compare other , [:assignee, :assigned]
end
end
end