stringtemplate4 icon indicating copy to clipboard operation
stringtemplate4 copied to clipboard

StringTemplate 4

Results 47 stringtemplate4 issues
Sort by recently updated
recently updated
newest added

Java 14 introduced the `record` keyword, which allows the creation of a lightweight "class" which really only holds data, similar to a `struct` in C for example. StringTemplate does not...

On Gentoo with `Java 21` we get these test failures: ``` There were 4 failures: 1) testRendererForGroup(org.stringtemplate.v4.test.TestRenderers) org.junit.ComparisonFailure: expected: but was: at org.junit.Assert.assertEquals(Assert.java:117) at org.junit.Assert.assertEquals(Assert.java:146) at org.stringtemplate.v4.test.TestRenderers.testRendererForGroup(TestRenderers.java:82) 2) testRendererWithPredefinedFormat2(org.stringtemplate.v4.test.TestRenderers) org.junit.ComparisonFailure:...

I reverted all automatic code fixes and formatting to minimize the diff. I updated all plugins and added a GitHub action (Dependabot) to update all pom.xml versions automatically in the...

Hello, I am exploring template engines for one of my translation project (one data model to another) and came across stringtemplate engine. Is there any advantages over using stringtemplate over...

Hello. Would it be possible to help newbies get started more quickly by spelling out the ANTLR dependencies everywhere? For example, the [Using StringTemplate with Java](https://github.com/antlr/stringtemplate4/blob/master/doc/java.md#using-stringtemplate-with-java) page does say >...

According to the user guide: ```stringtemplate parens(x) ::= "()" main() ::= "" ``` works and actually does fine. But the following doesn't: ```stringtemplate parens(x, y) ::= "(, )" main() ::=...

the `java.nio.Path` interface is recursively iterable on Path. This causes a stack-overflow in ST4's representation as it is never able to find an element that isnt iterable, so it calls...