-
Notifications
You must be signed in to change notification settings - Fork 737
Implement regexp literal syntax checking #2026
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
Draft
jakebailey
wants to merge
33
commits into
main
Choose a base branch
from
jabaile/regexp-errors
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+5,270
−2,920
Draft
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
40ee30b
wip
jakebailey 1af4d7c
wip
jakebailey 1cef046
wip
jakebailey 3110ac6
wip
jakebailey b648805
wip
jakebailey 0470fb4
wip
jakebailey 899ad1d
wip
jakebailey a5a1597
wip
jakebailey 9a4c582
move code
jakebailey 918571e
wip
jakebailey 9c50cd8
wip
jakebailey 9cade06
Validate extended Unicode escape values in regexp scanner and add bas…
jakebailey 2ab00a3
Include pending low surrogate in character class range error
jakebailey 6b788d2
Simplify
jakebailey e1c3215
Simplify
jakebailey 1831e7b
Simplify
jakebailey e944385
Delete temp test
jakebailey 2d4159c
Remove helper
jakebailey d6a8a5c
refactor
jakebailey b36d027
refactor
jakebailey d878c54
Simplify
jakebailey 24e7ea1
more refactors
jakebailey 6e230fb
move code around
jakebailey 1ab893a
use a set
jakebailey fd90e1b
Small simplifications
jakebailey 0c95bf0
Rename func
jakebailey 3450dae
cleanups
jakebailey fdb5b71
Move utf16 junk out
jakebailey cb08daf
Defer to utf16 package where possible
jakebailey b63d61b
Remove unused method
jakebailey 0604d23
Fix named capture group stuff
jakebailey 082cbcc
Fix porting difference
jakebailey 320e435
fix escaping
jakebailey File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was kind of workaround since I couldn't expand scanner effectively in Strada. But now that
regExpValidatoris a standalonestruct, I would suggest adding a dedicated method for related info (spelling suggestions).