a16abeb3e6
so they can make decisions like wether to create a frame or not
13 lines
240 B
Ruby
13 lines
240 B
Ruby
module Virtual
|
|
|
|
# following classes are stubs. currently in brainstorming mode, so anything may change anytime
|
|
class MethodEnter < Instruction
|
|
def initialize method
|
|
@method = method
|
|
end
|
|
|
|
attr_reader :method
|
|
end
|
|
|
|
end
|