(name: string)
| 840 | } |
| 841 | |
| 842 | async varEvalExpression(name: string): Promise<MINode> { |
| 843 | if (trace) |
| 844 | this.log("stderr", "varEvalExpression"); |
| 845 | return this.sendCommand(`var-evaluate-expression ${this.quote(name)}`); |
| 846 | } |
| 847 | |
| 848 | async varListChildren(name: string): Promise<VariableObject[]> { |
| 849 | if (trace) |
nothing calls this directly
no test coverage detected