MCPcopy Index your code
hub / github.com/WebFreak001/code-debug / setValuesFormattingMode

Method setValuesFormattingMode

src/mibase.ts:95–110  ·  view source on GitHub ↗
(mode: ValuesFormattingMode)

Source from the content-addressed store, hash-verified

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")

Callers 6

launchRequestMethod · 0.80
attachRequestMethod · 0.80
launchRequestMethod · 0.80
attachRequestMethod · 0.80
launchRequestMethod · 0.80
attachRequestMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected