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

Cross-project or library searching fails to find type references for star imports or qualified names #1511

Closed
eric-milles opened this issue Sep 16, 2023 · 0 comments
Assignees
Labels
Milestone

Comments

@eric-milles
Copy link
Member

eric-milles commented Sep 16, 2023

Consider the following:

import org.junit.runners.*
@Suite.SuiteClasses([...])
class SomeTestSuite {
}

Searching for org.junit.runners.Suite type fails to find the reference in this class.

Project A:

package p
class Outer {
  class Inner {}
}

Project B (depends on Project A):

import p.*
Class[] types = [Outer.Inner, p.Outer.Inner]

Searching for p.Outer or p.Outer.Inner type fails to find the references in this script.

@eric-milles eric-milles self-assigned this Sep 16, 2023
@eric-milles eric-milles added this to the v5.1.0 milestone Sep 16, 2023
@eric-milles eric-milles changed the title Cross-project or library searching fails to find type references for star imports or fully-qualified names Cross-project or library searching fails to find type references for star imports or qualified names Sep 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant