Detect if calling special methods on the PApplet or not.

This commit is contained in:
A Pottinger
2021-10-10 11:52:40 -07:00
parent 5d56e43a7d
commit 8e9c864031
7 changed files with 191 additions and 10 deletions

View File

@@ -375,6 +375,11 @@ public class ParserTests {
expectGood("smoothnoparam");
}
@Test
public void testSmoothThis() {
expectGood("smoothnoparamthis");
}
@Test
public void testSmoothWithParam() {
expectGood("smoothparam");
@@ -390,9 +395,14 @@ public class ParserTests {
expectGood("colorimport");
}
/*@Test
@Test
public void testPGraphicsStandalone() {
expectGood("pgraphics");
}*/
}
@Test
public void testSizeThis() {
expectGood("sizethis");
}
}