Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ref(node) refactor contextlines to use readline #12221

Merged
merged 29 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
2d042a2
ref(node): use readline for context lines
JonasBa May 25, 2024
1fc2544
test(node): contextline tests
JonasBa May 26, 2024
b0df967
test(node): contextline tests
JonasBa May 26, 2024
3a785bc
ref(node): contextlines cache attempt
JonasBa May 28, 2024
28f576f
ref(node) exclude other contextlines extensions
JonasBa Jun 9, 2024
2cfda9b
test(node) fix contextlines test
JonasBa Jun 10, 2024
db2df8d
fix scoped test
JonasBa Jun 10, 2024
2be28a5
lint
JonasBa Jun 10, 2024
93e8173
fix regexp danger warning
JonasBa Jun 10, 2024
a949d73
Merge branch 'develop' into jb/node/contextlines-memory
JonasBa Jun 10, 2024
584dad2
strict undefined check
JonasBa Jun 10, 2024
00fd3fc
reshuffle order
JonasBa Jun 10, 2024
6588673
test adding error handler on input stream
JonasBa Jun 10, 2024
96a617e
lint
JonasBa Jun 10, 2024
b4a51f6
fix duplicate reads on stream error
JonasBa Jun 11, 2024
421178e
fix duplicate reads on stream error
JonasBa Jun 11, 2024
306a11b
add emplace
JonasBa Jun 11, 2024
0dca6c5
fix(node) last line is not picked up as it does not include \n
JonasBa Jun 11, 2024
dea113b
ref(contexlines) use ordered startsWith instead of regexp and store c…
JonasBa Jun 12, 2024
e684eb6
Merge branch 'develop' into jb/node/contextlines-memory
JonasBa Jun 12, 2024
9af7dfc
ref(node) remove all but cache set snipline occurences
JonasBa Jun 12, 2024
83a8d05
Merge branch 'develop' into jb/node/contextlines-memory
JonasBa Jun 13, 2024
17dea5b
Merge branch 'develop' into jb/node/contextlines-memory
JonasBa Jun 13, 2024
2e3fe8f
Merge branch 'develop' into jb/node/contextlines-memory
JonasBa Jun 14, 2024
eecbf5f
Merge branch 'develop' into jb/node/contextlines-memory
JonasBa Jun 17, 2024
e79dac2
fix(contextlines) update type assertions
JonasBa Jun 17, 2024
ef1fa79
fix(contextlines) use runtime checks instead
JonasBa Jun 17, 2024
cc4305a
ref(node) fix types in tests
JonasBa Jun 17, 2024
bd35821
test(node) fix wrong type assertion
JonasBa Jun 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ test('should work inside catch block', done => {
'',
'try {',
],
post_context: ['} catch (err) {', ' Sentry.captureException(err);', '}', ''],
post_context: ['} catch (err) {', ' Sentry.captureException(err);', '}'],
}),
]),
},
Expand Down
Loading
Loading