(scopeId: number, name: string)
| 2716 | } |
| 2717 | |
| 2718 | private getFloatingVariable(scopeId: number, name: string): VariableObject { |
| 2719 | const scopeMap = this.floatingVariableMap[scopeId]; |
| 2720 | const ret = scopeMap ? scopeMap[name] : null; |
| 2721 | return ret; |
| 2722 | } |
| 2723 | |
| 2724 | private async staticVariablesRequest( |
| 2725 | threadId: number, |