(value: Trace)
| 2415 | } |
| 2416 | |
| 2417 | public set trace(value: Trace) { |
| 2418 | this._trace = value; |
| 2419 | this.onReady().then(() => { |
| 2420 | this.resolveConnection().then((connection) => { |
| 2421 | connection.trace(value, this._tracer); |
| 2422 | }) |
| 2423 | }, () => { |
| 2424 | }); |
| 2425 | } |
| 2426 | |
| 2427 | private data2String(data: any): string { |
| 2428 | if (data instanceof ResponseError) { |