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

fix: Don't emit empty scip occurrence for builtins #19105

Merged
merged 1 commit into from
Feb 7, 2025

Conversation

darichey
Copy link
Contributor

@darichey darichey commented Feb 6, 2025

We currently emit occurrences without a symbol name (e.g., { "range": [ 1, 7, 10 ] }) for builtins (e.g., i64). This happens because ide::moniker::def_to_moniker returns None for builtins:

/// * `None` is returned for definitions which are not in a module: `BuiltinAttr`, `BuiltinType`,
/// `BuiltinLifetime`, `TupleField`, `ToolModule`, and `InlineAsmRegOrRegClass`. TODO: it might be
/// sensible to provide monikers that refer to some non-existent crate of compiler builtin
/// definitions.
pub(crate) fn def_to_moniker(

It never makes sense to emit an occurrence without a symbol name, so just skip in that case.

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Feb 6, 2025
@Veykril Veykril added this pull request to the merge queue Feb 7, 2025
@Veykril
Copy link
Member

Veykril commented Feb 7, 2025

We could maybe point the primitive types to their core re-exports https://doc.rust-lang.org/src/core/primitive.rs.html or rustdoc module shims https://doc.rust-lang.org/src/core/primitive_docs.rs.html

Merged via the queue into rust-lang:master with commit 29ccd5a Feb 7, 2025
9 checks passed
@davidbarsky
Copy link
Contributor

I feel like the rustdoc module shims would be more useful for users, but I don't feel too strongly.

facebook-github-bot pushed a commit to facebookincubator/Glean that referenced this pull request Mar 17, 2025
Summary:
rust-analyzer had a bug which caused it to emit empty symbol occurrences (occurrences without a `symbol` field). I fixed this upstream, but we haven't upgrade rust-analyzer internally yet: rust-lang/rust-analyzer#19105.

This diff makes scip_to_glean behave the same as the [Haskell](https://www.internalfb.com/code/fbsource/[e9004f2932c4d2c96272dc586a3b2a431ac08a5e]/fbcode/glean/lang/scip/Data/SCIP/Angle.hs?lines=439) implementation in the presence of these erroneous occurrences.

Reviewed By: donsbot

Differential Revision: D71346020

fbshipit-source-id: 751d5b8f117e8418c1637b3196bee252b69f56c9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: Awaiting review from the assignee but also interested parties.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants