brainstorming mode on the new way (tm)

This commit is contained in:
Torsten Ruger
2014-07-10 17:14:38 +03:00
parent ee5615ec03
commit c505db490f
8 changed files with 94 additions and 12 deletions

View File

@ -37,7 +37,7 @@ module Virtual
end
def initialize
the_end = HaltInstruction.new
the_end = Halt.new
@frame = Frame.new(the_end , the_end , :Object)
end
attr_reader :frame
@ -51,15 +51,12 @@ module Virtual
instruction = next_instruction
end
end
#return an anonymous new function (the top level) into which code is compiled
def anonymous
end
end
end
require_relative "list"
require_relative "instruction"
require_relative "method"
require_relative "frame"
require_relative "value"
require_relative "mystery"