org.watertemplate.interpreter.parser.Parser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of watertemplate-engine Show documentation
Show all versions of watertemplate-engine Show documentation
Lighweight, fast Java 8 template engine.
package org.watertemplate.interpreter.parser;
import java.util.List;
public class Parser {
public AbstractSyntaxTree parse(final List tokens) {
return NonTerminal.TEMPLATE.buildAbstractSyntaxTree(new TokenStream(tokens));
}
}