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

feat(lsp): goto type reference #4090

Closed
Tracked by #1574
kobyhallx opened this issue Jan 18, 2024 · 0 comments
Closed
Tracked by #1574

feat(lsp): goto type reference #4090

kobyhallx opened this issue Jan 18, 2024 · 0 comments

Comments

@kobyhallx
Copy link
Contributor

kobyhallx commented Jan 18, 2024

Consider snippet

struct Foo {
    x: Field
}

fn foo_func() -> Foo {
    Foo { x: 3 }
}

fn main(x: Field) {
    let foo: Foo = foo_func();

    assert(foo.x != x);
}

User should be able to navigate to definition of struct Foo from a symbol Foo in line fn foo_func() -> Foo { and be taken to struct Foo { line.

@github-project-automation github-project-automation bot moved this to 📋 Backlog in Noir Jan 18, 2024
github-merge-queue bot pushed a commit that referenced this issue Jan 22, 2024
# Description

## Problem\*

Resolves <!-- Link to GitHub Issue -->

feat(lsp): goto type reference #4090

## Summary\*

Allows to go to type reference from symbol representing struct, ie.
function return.

## Additional Context



## Documentation\*

Check one:
- [x] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[Exceptional Case]** Documentation to be submitted in a separate
PR.

# PR Checklist\*

- [x] I have tested the changes locally.
- [x] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.
@github-project-automation github-project-automation bot moved this from 📋 Backlog to ✅ Done in Noir Jan 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Archived in project
Development

No branches or pull requests

1 participant