org.duelengine.duel.ast.UnknownNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of duel-compiler Show documentation
Show all versions of duel-compiler Show documentation
Dual-side template engine for the JVM
package org.duelengine.duel.ast;
public class UnknownNode extends LiteralNode {
public UnknownNode(String value, int index, int line, int column) {
super(value, index, line, column);
}
public UnknownNode(String value) {
super(value);
}
}