fix dunamic jump in interpreter and misc
This commit is contained in:
@ -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)
|
||||
|
@ -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)
|
||||
|
Reference in New Issue
Block a user