correctly linking frames and messages

This commit is contained in:
Torsten Ruger
2015-06-28 22:02:07 +03:00
parent 31635d9747
commit 8674c322c4
6 changed files with 26 additions and 20 deletions

View File

@@ -21,8 +21,9 @@
# Which resolves the dichotomy of objects on the stack or heap. Sama sama.
module Parfait
class Frame < List
def initialize
class Frame < Object
def initialize next_f
@next_frame = next_f
super()
end
end