Skip to content

Commit e4809d9

Browse files
authored
Remove .dylib filtering. (#6796)
* Remove .dylib filtering.
1 parent bbcc3fd commit e4809d9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Extension/src/LanguageServer/extension.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1179,7 +1179,9 @@ function handleCrashFileRead(err: NodeJS.ErrnoException | undefined | null, data
11791179
const lines: string[] = data.split("\n");
11801180
data = "";
11811181
lines.forEach((line: string) => {
1182-
if (!line.includes(".dylib") && !line.includes("???")) {
1182+
if (// Temporarily (?) remove .dylib filtering.
1183+
// !line.includes(".dylib") &&
1184+
!line.includes("???")) {
11831185
line = line.replace(/^\d+\s+/, ""); // Remove <numbers><spaces> from the start of the line.
11841186
line = line.replace(/std::__1::/g, "std::"); // __1:: is not helpful.
11851187
data += (line + "\n");

0 commit comments

Comments
 (0)