Closed marekjm closed 9 years ago
Add enter instruction for entering blocks. Block execution would be terminated using leave instruction.
enter
leave
Should enter be called on lightweight Block objects (like fcall), or on atoms representing block names (like call)?
Block
fcall
call
Issue #92 implemented the enter instruction. It is used to enter blocks after a try instruction has been issued to create a block-frame, and uses block names to known which block to enter.
try
Add
enter
instruction for entering blocks. Block execution would be terminated usingleave
instruction.Should
enter
be called on lightweightBlock
objects (likefcall
), or on atoms representing block names (likecall
)?