net.thevpc.jeep.core.nodes.JDefaultNodeParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeep-nodes Show documentation
Show all versions of jeep-nodes Show documentation
Java Enhanced Expression Parser (JEEP)
package net.thevpc.jeep.core.nodes;
import net.thevpc.jeep.JCompilationUnit;
import net.thevpc.jeep.JContext;
import net.thevpc.jeep.JTokenizer;
import net.thevpc.jeep.core.DefaultJParser;
import net.thevpc.jeep.core.JExpressionOptions;
import net.thevpc.jeep.core.DefaultJParserNodeFactory;
public class JDefaultNodeParser extends DefaultJParser> {
public JDefaultNodeParser(JTokenizer tokenizer, JCompilationUnit compilationUnit, JContext context) {
super(tokenizer, compilationUnit, context, new DefaultJParserNodeFactory(compilationUnit,context));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy