rubyx/lib/parfait/frame.rb

27 lines
1.0 KiB
Ruby
Raw Normal View History

2015-04-06 10:38:11 +02:00
# A Frame is set up by functions that use local variables or temporary variables
# in fact temporary variables are local variables named by the system
# It allows for access to those variables basically
# A Message and a Frame make up the two sides of message passing:
2015-10-23 13:22:55 +02:00
# A Message (see details there) is created by the caller and control is transferred
# A Frame is created by the receiver
# PS: it turns out that both messages and frames are created at compile, not run-time, and
# just constantly reused. Each message has a frame object ready and ist also linked
# to the next message.
2015-10-23 13:22:55 +02:00
# The better way to say above is that a message is *used* by the caller, and a frame by the callee.
# Also at runtime Messages and Frames remain completely "normal" objects. Ie have layouts and so on.
# Which resolves the dichotomy of objects on the stack or heap. Sama sama.
module Parfait
2015-06-28 21:02:07 +02:00
class Frame < Object
2015-07-30 18:18:41 +02:00
attribute :next_frame
include Indexed
self.offset(2) # 1 == the next_frame attributes above + layout. (indexed_length gets added)
end
2015-04-06 10:38:11 +02:00
end