rubyx/lib/ast/operator_expressions.rb

9 lines
240 B
Ruby
Raw Normal View History

module Ast
class OperatorExpression < Expression
# attr_reader :operator, :left, :right
def compile method , frame
2014-07-15 09:35:29 +02:00
call = CallSiteExpression.new( operator , [right] , left )
call.compile(method,frame)
2014-07-14 15:19:47 +02:00
end
end
end