Skip to content

Commit 62be087

Browse files
authored
ref(node) refactor contextlines to use readline (#12221)
Refactors contextlines integration to use readline instead of reading the entire file into memory (we were also doubling the memory as we were splitting the file via `.split(\n)`. Current implementation is not leveraging the cache to optimize file reads, so I need to reintroduce that. Something to note is that the caching behavior will become per frame location vs per file, which I think makes more sense as we can only assume that this stack frame might throw in the future (as opposed to anything from the file it is in).
1 parent d3ff316 commit 62be087

File tree

3 files changed

+417
-131
lines changed

3 files changed

+417
-131
lines changed

dev-packages/node-integration-tests/suites/public-api/captureException/catched-error/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ test('should work inside catch block', done => {
3030
'',
3131
'try {',
3232
],
33-
post_context: ['} catch (err) {', ' Sentry.captureException(err);', '}', ''],
33+
post_context: ['} catch (err) {', ' Sentry.captureException(err);', '}'],
3434
}),
3535
]),
3636
},

0 commit comments

Comments
 (0)