-
Notifications
You must be signed in to change notification settings - Fork 193
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 type inferencing and syntax highlighting for trait property references #960
Comments
eric-milles
added a commit
that referenced
this issue
Sep 23, 2019
eric-milles
added a commit
that referenced
this issue
Sep 23, 2019
eric-milles
added a commit
that referenced
this issue
Oct 7, 2019
trait T { Number number } class C implements T { void meth() { getNumber() // F3 over name } }
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Consider the following:
The property expressions "number" within
C.m()
are inconsistently highlighted (see below) and code hover showsC.getNumber()
orC.setNumber(Number value)
instead ofT.number
orT.getNumber()
orT.setNumber(Number value)
.The text was updated successfully, but these errors were encountered: