Skip to content

Commit

Permalink
Merge branch 'stl1' of github.com:HenryRiley0/code-debug into stl1
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryRiley0 committed Sep 13, 2024
2 parents 8f5c763 + 5571f3f commit fd6e84b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Versioning].
### Added

- solve the problem of failed parsing of containers ([@henryriley0])
- add static variable support ([@henryriley0])
- fix gdb check error when debug beginning ([@henryriley0])
- fix implicitly type error in log message when build vsix ([@henryriley0])
- check for configured debugger before start to provide a nicer error message
Expand Down
1 change: 1 addition & 0 deletions src/backend/gdb_expansion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ export function expandValue(variableCreate: (arg: VariableObject | string, optio
value = value.substring(1).trim();
}
value = value.trim();
value = value.replace(/^static /, "");
const variableMatch = resultRegex.exec(value);
if (!variableMatch)
return undefined;
Expand Down

0 comments on commit fd6e84b

Please sign in to comment.