start better if mom test

This commit is contained in:
Torsten Ruger
2017-08-30 22:27:12 +03:00
parent 349dd37c82
commit c3939ef622
6 changed files with 70 additions and 12 deletions

View File

@ -20,6 +20,10 @@ module Rubyx
type.create_method( @name , @args_type )#FIXME, @locals_type)
end
def create_tmp
tmp_name = "tmp_#{@locals_type.instance_length}"
@locals_type = @locals_type.add_instance_variable( tmp_name , :Object )
tmp_name
end
end
end