Skip to content

Commit 5dac985

Browse files
committed
1.fix missing output of variable type for structure
1 parent b7ada8c commit 5dac985

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Versioning].
1212

1313
### Added
1414

15+
- fix missing output of variable type for structure ([@henryriley0])
1516
- add static variable support ([@henryriley0])
1617
- fix gdb check error when debug beginning ([@henryriley0])
1718
- fix implicitly type error in log message when build vsix ([@henryriley0])

src/mibase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ export class MI2DebugSession extends DebugSession {
517517
variables.push({
518518
name: variable.name,
519519
type: variable.type,
520-
value: "<unknown>",
520+
value: variable.type,
521521
variablesReference: createVariable(variable.name)
522522
});
523523
}

0 commit comments

Comments
 (0)