Skip to content

Commit

Permalink
Fixed over-eager leading backslash removal in Rascal outline
Browse files Browse the repository at this point in the history
  • Loading branch information
rodinaarssen committed Jan 8, 2025
1 parent 66773d8 commit ac997e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ list[DocumentSymbol] documentRascalSymbols(start[Module] \mod) {
}
// remove leading backslash
str clean(/\\<rest:.*>/) = clean(rest);
str clean(/^\\<rest:.*>/) = clean(rest);
str clean("false") = "\\false"; // vscode doesn't like a falsy name
Expand Down

0 comments on commit ac997e7

Please sign in to comment.