rubyx/lib/melon/compilers/method_compiler.rb

17 lines
244 B
Ruby
Raw Normal View History

module Melon
module Compilers
class MethodCompiler < AST::Processor
def initialize( ruby_method )
@ruby_method
end
def handler_missing(node)
raise "No handler for #{node}"
end
end
end
end