org.duelengine.duel.ast.CommentNode 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 CommentNode extends BlockNode {
public static final String BEGIN = "";
public CommentNode(String value, int index, int line, int column) {
super(BEGIN, END, value, index, line, column);
}
public CommentNode(String value) {
super(BEGIN, END, value);
}
}