All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.watertemplate.interpreter.parser.Parser Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
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));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy