fix dunamic jump in interpreter and misc

This commit is contained in:
Torsten Ruger
2018-07-03 19:15:36 +03:00
parent cab6bc389f
commit e099014d63
6 changed files with 10 additions and 7 deletions

View File

@ -52,7 +52,7 @@ module Vool
end
def to_s
"#{receiver}.#{name}(#{arguments.join(',')})"
"#{receiver}.#{name}(#{arguments.join(', ')})"
end
def each(&block)
block.call(self)

View File

@ -33,7 +33,7 @@ module Vool
end
def to_s
"#{receiver}.#{name}(#{arguments.join(',')})"
"#{receiver}.#{name}(#{arguments.join(', ')})"
end
def each(&block)
block.call(self)