Fixed cygdrive paths in stack request (fix #72)
This commit is contained in:
parent
d8aeaf506b
commit
bf519c8bab
1 changed files with 7 additions and 4 deletions
|
|
@ -209,6 +209,11 @@ export class MI2DebugSession extends DebugSession {
|
|||
file = relative(this.switchCWD.replace(/\\/g, "/"), file.replace(/\\/g, "/"));
|
||||
file = systemPath.resolve(this.trimCWD.replace(/\\/g, "/"), file.replace(/\\/g, "/"));
|
||||
}
|
||||
else if (process.platform === "win32") {
|
||||
if (file.startsWith("\\cygdrive\\") || file.startsWith("/cygdrive/")) {
|
||||
file = file[10] + ":" + file.substr(11); // replaces /cygdrive/c/foo/bar.txt with c:/foo/bar.txt
|
||||
}
|
||||
}
|
||||
ret.push(new StackFrame(element.level, element.function + "@" + element.address, new Source(element.fileName, file), element.line, 0));
|
||||
});
|
||||
response.body = {
|
||||
|
|
@ -340,15 +345,13 @@ export class MI2DebugSession extends DebugSession {
|
|||
}
|
||||
else {
|
||||
if (typeof expanded == "string") {
|
||||
if (expanded == "<nullptr>")
|
||||
{
|
||||
if (expanded == "<nullptr>") {
|
||||
if (argsPart)
|
||||
argsPart = false;
|
||||
else
|
||||
return submit();
|
||||
}
|
||||
else if (expanded[0] != '"')
|
||||
{
|
||||
else if (expanded[0] != '"') {
|
||||
strArr.push({
|
||||
name: "[err]",
|
||||
value: expanded,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue