move that test to core (cant be done in compiled code) and focus on string addition instead

This commit is contained in:
Torsten Ruger
2014-05-31 16:43:03 +03:00
parent cdfc1ac891
commit 5756e0b325
5 changed files with 47 additions and 23 deletions

View File

@ -29,7 +29,7 @@ module Vm
def initialize(name , args = [] , return_type = nil)
super()
@name = name
@name = name.to_sym
@args = Array.new(args.length)
args.each_with_index do |arg , i|
if arg.is_a?(Value)