We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7ada8c commit 5dac985Copy full SHA for 5dac985
CHANGELOG.md
@@ -12,6 +12,7 @@ Versioning].
12
13
### Added
14
15
+- fix missing output of variable type for structure ([@henryriley0])
16
- add static variable support ([@henryriley0])
17
- fix gdb check error when debug beginning ([@henryriley0])
18
- fix implicitly type error in log message when build vsix ([@henryriley0])
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