()
| 59 | } |
| 60 | |
| 61 | newFunctionContext() { |
| 62 | const newContext = { '@contextType': 'function' }; |
| 63 | this.contexts.push(newContext); |
| 64 | this.functionContexts.push(newContext); |
| 65 | } |
| 66 | |
| 67 | newContext(run) { |
| 68 | const newContext = Object.assign({ '@contextType': 'const/let' }, this.currentContext); |