mirror of
https://github.com/processing/processing4.git
synced 2026-02-02 13:21:07 +01:00
Merge pull request #3638 from JakubValtar/bugfix-preproc
Preprocessor can now handle fully qualifies names
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user