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.
this
1 parent c553490 commit 954c39dCopy full SHA for 954c39d
src/compiler/old-compiler-compatibility.js
@@ -35,6 +35,13 @@ class ScriptTreeGeneratorStub {
35
this.real = real;
36
37
this.fakeThis = {
38
+ thread: real.thread,
39
+ target: real.target,
40
+ blocks: real.blocks,
41
+ runtime: real.runtime,
42
+ stage: real.stage,
43
+ script: real.script,
44
+
45
/**
46
* @param parentBlock Parent VM block.
47
* @param {string} inputName Name of input.
@@ -231,6 +238,17 @@ class JSGeneratorStub {
231
238
232
239
233
240
241
242
+ ir: real.ir,
243
244
245
+ get frames () {
246
+ return real.frames;
247
+ },
248
+ get currentFrame () {
249
+ return real.currentFrame;
250
251
234
252
get source () {
235
253
return real.source;
236
254
},
0 commit comments