8 lines
127 B
Ruby
8 lines
127 B
Ruby
module Vm
|
|
module StatementList
|
|
def on_Statements statement
|
|
process_all( statement.statements )
|
|
end
|
|
end
|
|
end
|