fx ruby send args

This commit is contained in:
Torsten Ruger
2018-07-20 20:06:14 +03:00
parent d03592dfb1
commit 0238874c20
6 changed files with 13 additions and 9 deletions

View File

@ -27,6 +27,9 @@ module Vool
@statements << o
self
end
def prepend(o)
@statements = [o] + @statements
end
# create mom instructions
def to_mom( compiler )