rubyx/lib/soml/compiler/statement_list.rb
2015-10-23 14:22:55 +03:00

9 lines
130 B
Ruby

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