rubyx/lib/vm/method_compiler/statement_list.rb

8 lines
127 B
Ruby
Raw Normal View History

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