-
Bug
-
Resolution: Fixed
-
P4
-
7
-
b74
-
generic
-
generic
-
Not verified
203 if (symbol.members() != null) {
204 for(Scope.Entry e: symbol.members().table)
205 computeAnnotationSet(e.sym, annotationSet);
206 }
Line 204:
It is hard to believe this line is correct, since "table" is just the set of hash buckets for the scope.
It probably should read:
if (symbol.members() != null) {
for(Scope.Entry e = symbol.members().elems; e != null; e = e.sibling)
computeAnnotationSet(e.sym, annotationSet);
}
204 for(Scope.Entry e: symbol.members().table)
205 computeAnnotationSet(e.sym, annotationSet);
206 }
Line 204:
It is hard to believe this line is correct, since "table" is just the set of hash buckets for the scope.
It probably should read:
if (symbol.members() != null) {
for(Scope.Entry e = symbol.members().elems; e != null; e = e.sibling)
computeAnnotationSet(e.sym, annotationSet);
}