(name: string = "*")
| 856 | } |
| 857 | |
| 858 | async varUpdate(name: string = "*"): Promise<MINode> { |
| 859 | if (trace) |
| 860 | this.log("stderr", "varUpdate"); |
| 861 | return this.sendCommand(`var-update --all-values ${this.quote(name)}`); |
| 862 | } |
| 863 | |
| 864 | async varAssign(name: string, rawValue: string): Promise<MINode> { |
| 865 | if (trace) |
no test coverage detected