You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem was that the header scopes looked like this:
IMPORTED -> EMPTY -> JAVA_LANG
Where IMPORTED and JAVA_LANG both can resolve the same
name NAME. The empty symtable is administrative, it's
a shadow barrier. With the previous definition of a
shadow barrier, the barriers were positioned this way:
IMPORTED -> EMPTY] -> JAVA_LANG]
IMPORTED asks for NAME and finds something. It's not
a shadow barrier so it asks EMPTY for NAME. EMPTY
does not know NAME so it asks its parent, ignoring that
it itself is a shadow barrier.
Now we don't call `ShadowChain::resolve` to collect
shadowed names to avoid this situation.
Affects PMD Version: 7.0.0
Make sure, to test with the latest PMD version.
Description:
Java reference resolution reports an ambiguity error where there is none, when a statically imported type shadows a java.lang member.
See https://github.com/pmd/pmd/runs/5091674249?check_suite_focus=true#step:7:9523
Exception Stacktrace:
Code Sample demonstrating the issue:
Container.java
Foo.java
The text was updated successfully, but these errors were encountered: