Merge pull request #3638 from JakubValtar/bugfix-preproc

Preprocessor can now handle fully qualifies names
This commit is contained in:
Ben Fry
2015-08-16 12:13:59 -04:00

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: