rubyx/lib/soml/compiler/statement_list.rb

9 lines
130 B
Ruby
Raw Normal View History

2015-10-23 13:22:55 +02:00
module Soml
Compiler.class_eval do
def on_statements statement
process_all( statement.children )
end
end
end