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

What's the best workaround? Alias in antlr somehow? Or change name to maintemplate? A better name? https://github.com/antlr/grammars-v4/blob/master/stringtemplate/STParser.g4#L42 https://github.com/antlr/grammars-v4/blob/master/stringtemplate/STGParser.g4#L58

Registered also as https://github.com/antlr/antlrcs/issues/72 Here is a failing test First template (t0) created with 'CreateShadow' works OK Second (t1) does not, renders all model values as empty ST4.0.8 `public class...

Could you please add maven-bundle-plugin into StringTemplate/ANTLR pom.xml and OSGify these libraries?

type:feature

From my tests, it appears that calling `getTemplateNames()` on an instantiated `STGroupFile` object only returns the names of templates that are defined in the group (`.stg`) file, itself, ignoring any...

## Steps to reproduce ### Base.stg ``` Map ::= [ "a": {} ] example() ::= "override this" ``` ### Derived.stg ``` import "Base.stg" main() ::= > example() ::= "custom" ```...

type:bug

I am writing a annotation processing tool with the help of stringtemplate4 which generates java source code from stg template files. Whenever I changed the stg template file (which ends...

type:enhancement

Not a serious issue but thought I would mention it. I downloaded the ST jar file and download page said the version was 4.0.8 and the name of the jar...

type:bug
pull request

The following template produces a warning when `foo` is `null` because operator `&&` does not short circuit. ``` ... ```

type:enhancement

> as a user of string template, I would like a larger set of ~monadic operations on multi-value attributes, so that I am able to easily template strings of list...

type:feature

I use the template as recursion, it will cause stack overflow. I'm sure there will not be an endless recursive call. The template looks as following: ``` struct(name, struct) ::=...