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

23
lib/core/base_object.rb Normal file
View File

@ -0,0 +1,23 @@
module Core
class BaseObject
def _set_instance_variable(name , value)
return name
end
def _get_instance_variable( name )
return name
end
def _get_singleton_method(name )
return name
end
def _add_singleton_method(method)
return 4
end
def initialize()
return 4
end
end
end