Skip to content

Commit

Permalink
Remove .dylib filtering. (#6796)
Browse files Browse the repository at this point in the history
* Remove .dylib filtering.
  • Loading branch information
sean-mcmanus authored Jan 16, 2021
1 parent bbcc3fd commit e4809d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Extension/src/LanguageServer/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,9 @@ function handleCrashFileRead(err: NodeJS.ErrnoException | undefined | null, data
const lines: string[] = data.split("\n");
data = "";
lines.forEach((line: string) => {
if (!line.includes(".dylib") && !line.includes("???")) {
if (// Temporarily (?) remove .dylib filtering.
// !line.includes(".dylib") &&
!line.includes("???")) {
line = line.replace(/^\d+\s+/, ""); // Remove <numbers><spaces> from the start of the line.
line = line.replace(/std::__1::/g, "std::"); // __1:: is not helpful.
data += (line + "\n");
Expand Down

0 comments on commit e4809d9

Please sign in to comment.