Preprocessor can now handle fully qualifies names

- Map.Entry<String, Integer> is now possible
- java.util.List<Boolean> also possible
This commit is contained in:
Jakub Valtar
2015-08-15 12:01:33 -04:00
parent b2902f4316
commit 1c4fa04aa9

View File

@@ -374,12 +374,15 @@ public class PdeEmitter implements PdeTokenTypes {
}
break;
// DOT always has exactly two children.
// DOT
case DOT:
print(child1);
out.print(".");
dumpHiddenAfter(ast);
print(child2);
if (child3 != null) {
print(child3);
}
break;
case MODIFIERS: