-
Notifications
You must be signed in to change notification settings - Fork 31
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
Close SCIP/LSIF feature gap #557
Conversation
9d47410
to
63e7a2e
Compare
0.until(info.getDocumentationCount) | ||
.foreach { n => | ||
val documentation = info.getDocumentation(n) | ||
out | ||
.append(prefix) | ||
.append("documentation ") | ||
.append(documentation.replace("\n", "\\n").replace("\t", "\\t")) | ||
.append("\n") | ||
} | ||
0.until(info.getRelationshipsCount) | ||
.foreach { n => | ||
val relationship = info.getRelationships(n) | ||
out.append(prefix).append("relationship") |
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.
Should we
- Sort relationships by symbol?
- Sort documentation strings?
I can't reproduce the failures locally, but on CI it seems to be order related:
+// relationship is_reference is_implementation semanticdb maven . . com/airbnb/epoxy/BaseEpoxyTouchCallback#clearView().
// relationship is_reference is_implementation semanticdb maven . . com/airbnb/epoxy/EpoxyTouchHelperCallback#clearView(+1).
// relationship is_reference is_implementation semanticdb maven . . com/airbnb/epoxy/EpoxyTouchHelperCallback#clearView().
-// relationship is_reference is_implementation semanticdb maven . . com/airbnb/epoxy/BaseEpoxyTouchCallback#clearView().
// ^ reference semanticdb maven . . com/airbnb/epoxy/EpoxyModelTouchCallback#[T]
Here's suggested patch (but this will require regenerating snapshots):
0.until(info.getDocumentationCount) | |
.foreach { n => | |
val documentation = info.getDocumentation(n) | |
out | |
.append(prefix) | |
.append("documentation ") | |
.append(documentation.replace("\n", "\\n").replace("\t", "\\t")) | |
.append("\n") | |
} | |
0.until(info.getRelationshipsCount) | |
.foreach { n => | |
val relationship = info.getRelationships(n) | |
out.append(prefix).append("relationship") | |
val docs = | |
0.until(info.getDocumentationCount).map(info.getDocumentation).sorted | |
docs.foreach { documentation => | |
out | |
.append(prefix) | |
.append("documentation ") | |
.append(documentation.replace("\n", "\\n").replace("\t", "\\t")) | |
.append("\n") | |
} | |
val relationships = 0 | |
.until(info.getRelationshipsCount()) | |
.map(info.getRelationships) | |
.sortBy(_.getSymbol()) | |
relationships.foreach { relationship => | |
out.append(prefix).append("relationship") |
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.
The failure was probably because I hadn't rebased on top of the scip-snapshots branch, which was failing with the same error. I've rebased now and will see if CI becomes green.
Previously, scip-java had custom support for Scala that was only supported by the LSIF writer. This meant that Scala users were recommended to use LSIF instead of SCIP. Now that Sourcegraph supports native SCIP uploads (and stores SCIP in the database) it's time to close this feature gap so that Scala users can use SCIP instead of LSIF.
63e7a2e
to
2bc9b3e
Compare
CI is green :letsgooo: |
Previously, scip-java had custom support for Scala that was only
supported by the LSIF writer. This meant that Scala users were
recommended to use LSIF instead of SCIP.
Now that Sourcegraph supports native SCIP uploads (and stores SCIP in
the database) it's time to close this feature gap so that Scala
users can use SCIP instead of LSIF.
Test plan
See updated snapshot tests.