9 lines
132 B
Ruby
9 lines
132 B
Ruby
|
module Phisol
|
||
|
Compiler.class_eval do
|
||
|
|
||
|
def on_statements statement
|
||
|
process_all( statement.children )
|
||
|
end
|
||
|
end
|
||
|
end
|