-
-
Notifications
You must be signed in to change notification settings - Fork 84
General cleanup #235
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
General cleanup #235
Conversation
AndreasArvidsson
commented
Aug 15, 2021
•
edited
Loading
edited
- Removed inference context
- Unify inference of partial range and list targets
- Capitalize action names
- Added selection type to action preference
- Action breakpoint now supports scope types and in line breakpoints
- Process targets is now split into multiple files
- Moved assorted files into folders
- fixes Filter out duplicate selections #228
- fixes Move token scope type code out of navigation map #236
- fixes Add modifier preferences support #230
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.
Looks great! Left some comments which I'll now address myself 😊
new SourceBreakpoint(new Location(uri, new Range(line, 0, line, 0))) | ||
new SourceBreakpoint( | ||
new Location(uri, target.selection.selection.start) | ||
) | ||
); | ||
} | ||
}); |
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.
Very clean. Good stuff
target.modifier != null || | ||
target.insideOutsideType != null | ||
); | ||
} |
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 file is beautiful. So much cleaner