| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Co-authored-by: dondonz <13839920+dondonz@users.noreply.github.com>
Co-authored-by: dondonz <13839920+dondonz@users.noreply.github.com>
Co-authored-by: dondonz <13839920+dondonz@users.noreply.github.com>
| return this; | ||
| } | ||
| return parent; | ||
| return assertNotNull(parent, "parent should not be null for non-root path"); |
There was a problem hiding this comment.
TODO: check this
Sorry, something went wrong.
|
|
||
| public String getSegmentName() { | ||
| return (String) segment; | ||
| return (String) assertNotNull(segment, "segment should not be null"); |
There was a problem hiding this comment.
TODO: check if we want these asserts here
Sorry, something went wrong.
| } | ||
|
|
||
| return self.isRootPath() && that.isRootPath(); | ||
| return (self == null || self.isRootPath()) && (that == null || that.isRootPath()); |
There was a problem hiding this comment.
TODO: double check this change in return statement
Sorry, something went wrong.
…5125-48d5-add7-382dfedc3cc7
Test Results0 files - 335 0 suites - 335 0s ⏱️ - 5m 5s Results for commit a18d5ee. ± Comparison against base commit 89b4446. ♻️ This comment has been updated with latest results. |
Sorry, something went wrong.
|
Closing the 2nd batch of Copilot PRs after finding multiple errors. I will redo |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Annotates 10 classes in graphql.execution package with JSpecify nullability markers, following the established pattern in the codebase.
Annotated Classes
Implementation
Example
This pull request was created from Copilot chat.
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.