rubyx/lib/phisol/compiler/statement_list.rb

9 lines
132 B
Ruby
Raw Normal View History

module Phisol
Compiler.class_eval do
def on_statements statement
process_all( statement.children )
end
end
end