Compile a template.
(String srcName, String name, List<FormalArgument> args, String template, Token templateToken)
| 468 | /** Compile a template. */ |
| 469 | |
| 470 | public CompiledST compile(String srcName, String name, List<FormalArgument> args, String template, Token templateToken) // for error location |
| 471 | { |
| 472 | //System.out.println("STGroup.compile: "+enclosingTemplateName); |
| 473 | Compiler c = new Compiler(this); |
| 474 | return c.compile(srcName, name, args, template, templateToken); |
| 475 | } |
| 476 | |
| 477 | /** The {@code "foo"} of {@code t() ::= "<@foo()>"} is mangled to |
| 478 | * {@code "/region__/t__foo"} |
no test coverage detected