(mode: ValuesFormattingMode)
| 93 | } |
| 94 | |
| 95 | protected setValuesFormattingMode(mode: ValuesFormattingMode) { |
| 96 | switch (mode) { |
| 97 | case "disabled": |
| 98 | this.useVarObjects = true; |
| 99 | this.miDebugger.prettyPrint = false; |
| 100 | break; |
| 101 | case "prettyPrinters": |
| 102 | this.useVarObjects = true; |
| 103 | this.miDebugger.prettyPrint = true; |
| 104 | break; |
| 105 | case "parseText": |
| 106 | default: |
| 107 | this.useVarObjects = false; |
| 108 | this.miDebugger.prettyPrint = false; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | protected handleMsg(type: string, msg: string) { |
| 113 | if (type == "target") |
no outgoing calls
no test coverage detected