mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 18:10:43 +01:00
Get the tests runnable again.
This commit is contained in:
@@ -325,6 +325,10 @@ public class PdeParseTreeListener extends ProcessingBaseListener {
|
||||
public void exitMethodCall(ProcessingParser.MethodCallContext ctx) {
|
||||
String methodName = ctx.getChild(0).getText();
|
||||
|
||||
// Check if calling on something other than this.
|
||||
//System.out.println(ctx.getParent());
|
||||
|
||||
// If referring to the applet, check for rewrites.
|
||||
if (SIZE_METHOD_NAME.equals(methodName) || FULLSCREEN_METHOD_NAME.equals(methodName)) {
|
||||
handleSizeCall(ctx);
|
||||
} else if (PIXEL_DENSITY_METHOD_NAME.equals(methodName)) {
|
||||
|
||||
Reference in New Issue
Block a user