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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy