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

org.duelengine.duel.ast.CommentNode Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy