We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 179030a commit fed099cCopy full SHA for fed099c
src/engine/thread.js
@@ -451,7 +451,8 @@ class Thread {
451
let callCount = 5; // Max number of enclosing procedure calls to examine.
452
const sp = this.stackFrames.length - 1;
453
for (let i = sp - 1; i >= 0; i--) {
454
- const block = this.target.blocks.getBlock(this.stackFrames[i].op.id);
+ const block = this.target.blocks.getBlock(this.stackFrames[i].op.id) ||
455
+ this.target.runtime.flyoutBlocks.getBlock(this.stackFrames[i].op.id);
456
if (block.opcode === 'procedures_call' &&
457
block.mutation.proccode === procedureCode) {
458
return true;
0 commit comments