(text: string)
| 72 | } |
| 73 | |
| 74 | logAsConsole(text: string) { |
| 75 | if (!text) return; |
| 76 | if (text.endsWith('\n')) text = text.substring(0, text.length - 1); |
| 77 | this._log(text); |
| 78 | } |
| 79 | |
| 80 | public logVariable( |
| 81 | rootVariable: Dap.Variable, |
no test coverage detected