Closes #371: Mutli-line string support.

Offers support for multi-line strings with a flag to simulate the feature prior to switching to Java 17 build flags. Note that comments are left in (TODOs) where the switch would be required to support it "natively".
This commit is contained in:
A Pottinger
2022-01-29 16:14:04 -08:00
parent 30cee886da
commit b66c5f2487
9 changed files with 89 additions and 5 deletions

View File

@@ -415,4 +415,9 @@ public class ParserTests {
expectGood("sizeclass");
}
@Test
public void testMultlineString() {
expectGood("multilinestr");
}
}