We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2129352 commit 6d0260dCopy full SHA for 6d0260d
1 file changed
src/crosgdb.ts
@@ -14,7 +14,7 @@ export interface AttachRequestArguments extends DebugProtocol.AttachRequestArgum
14
cros_sdk_path: string;
15
gdbpath: string;
16
debugger_args: string[];
17
- cache_threads: boolean;
+ cacheThreads: boolean;
18
executable: string;
19
target: string;
20
valuesFormatting: ValuesFormattingMode;
@@ -53,7 +53,7 @@ class CrosGDBDebugSession extends MI2DebugSession {
53
54
this.setValuesFormattingMode(args.valuesFormatting);
55
56
- this.miDebugger.cacheThreads = args.cache_threads;
+ this.miDebugger.cacheThreads = !!args.cacheThreads;
57
this.miDebugger.printCalls = !!args.printCalls;
58
this.miDebugger.debugOutput = !!args.showDevDebugOutput;
59
0 commit comments