rubyx/lib/vm/method_compiler/statement_list.rb

8 lines
127 B
Ruby
Raw Normal View History

2017-01-14 19:28:44 +02:00
module Vm
2016-12-09 14:19:22 +02:00
module StatementList
2016-12-11 12:13:42 +02:00
def on_Statements statement
process_all( statement.statements )
end
end
end