mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 18:35:37 +01:00
oops, left out this case
This commit is contained in:
@@ -634,6 +634,12 @@ public class ASTGenerator {
|
||||
}
|
||||
case ASTNode.QUALIFIED_NAME:
|
||||
QualifiedName qn = (QualifiedName) astNode;
|
||||
ASTNode temp2 = findDeclaration2(qn.getName(), nearestNode);
|
||||
if(temp2 instanceof FieldDeclaration){
|
||||
// field is locally defined
|
||||
System.out.println(qn.getName() + " was found locally," + getNodeAsString(extracTypeInfo(temp2)));
|
||||
return new ClassMember(extracTypeInfo(temp2));
|
||||
}
|
||||
if (qn.getQualifier() == null) {
|
||||
System.out.println("MI,Not implemented.");
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user