We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7196ed1 commit bd1dc49Copy full SHA for bd1dc49
CHANGELOG.md
@@ -12,6 +12,7 @@ Versioning].
12
13
### Added
14
15
+- fix variable type unknown issue ([@henryriley0])
16
- fix gdb check error when debug beginning ([@henryriley0])
17
- fix implicitly type error in log message when build vsix ([@henryriley0])
18
- check for configured debugger before start to provide a nicer error message
src/mibase.ts
@@ -517,7 +517,7 @@ export class MI2DebugSession extends DebugSession {
517
variables.push({
518
name: variable.name,
519
type: variable.type,
520
- value: "<unknown>",
+ value: variable.type,
521
variablesReference: createVariable(variable.name)
522
});
523
}
0 commit comments