Skip to content

Commit bd1dc49

Browse files
committed
1. fix variable type unknown issue
1 parent 7196ed1 commit bd1dc49

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Versioning].
1212

1313
### Added
1414

15+
- fix variable type unknown issue ([@henryriley0])
1516
- fix gdb check error when debug beginning ([@henryriley0])
1617
- fix implicitly type error in log message when build vsix ([@henryriley0])
1718
- check for configured debugger before start to provide a nicer error message

src/mibase.ts

+1-1
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)