Fix GDB expansion of structures/arrays containing floating point values.

This commit is contained in:
Marcel Ball 2018-01-24 15:47:23 -04:00
commit 2219810715
2 changed files with 12 additions and 1 deletions

View file

@ -7,7 +7,7 @@ const referenceStringRegex = /^(0x[0-9a-fA-F]+\s*)"/;
const referenceRegex = /^0x[0-9a-fA-F]+/;
const nullpointerRegex = /^0x0+\b/;
const charRegex = /^(\d+) ['"]/;
const numberRegex = /^\d+/;
const numberRegex = /^\d+(\.\d+)?/;
const pointerCombineChar = ".";
export function isExpandable(value: string): number {