We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 72c8b34 + 8788b8d commit 436cd8cCopy full SHA for 436cd8c
CHANGELOG.md
@@ -13,6 +13,7 @@ Versioning].
13
### Added
14
15
- solve the problem of failed parsing of containers ([@henryriley0])
16
+- fix missing output of variable type for structure ([@henryriley0])
17
- add static variable support ([@henryriley0])
18
- fix gdb check error when debug beginning ([@henryriley0])
19
- 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