Brent McCullough

Results 4 comments of Brent McCullough

I spent a couple hours behind this issue trying to get `stork-search` installed on an Alpine image. (Didn't seem like such a big deal, _everything_ is hard to install on...

For anyone that finds this, the workaround I am using is to just store template names in the map and use double indirection to invoke them: ``` ... $(map.(\"simple\"))()$ ......

It is Kotlin. The registrations work, just not after "passing through" a mapped template in a loaded group file. I will provide a Java repro after the weekend. Thanks.

Here is the Java 11 repro (using the same template files above): ```java package test; import org.stringtemplate.v4.Interpreter; import org.stringtemplate.v4.ST; import org.stringtemplate.v4.STGroupFile; import org.stringtemplate.v4.misc.ObjectModelAdaptor; import java.nio.charset.StandardCharsets; public class ST4BugReplJava { static...