ff22c17784
new compile module does just that: compile Dispatch with visitor pattern no more patching into ast
8 lines
234 B
Ruby
8 lines
234 B
Ruby
module Compiler
|
|
# operator attr_reader :operator, :left, :right
|
|
def compile_operator expression, method , message
|
|
call = CallSiteExpression.new( operator , [right] , left )
|
|
call.compile(method,message)
|
|
end
|
|
end
|