com.github.uscexp.grappa.extension.nodes.AstCommandTreeNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grappa.extension Show documentation
Show all versions of grappa.extension Show documentation
Extension for parboiled/grappa parser.
/*
* Copyright (C) 2014 by haui - all rights reserved
*/
package com.github.uscexp.grappa.extension.nodes;
import org.parboiled.Node;
import com.github.uscexp.grappa.extension.annotations.AstCommand;
/**
* base class for all {@link AstCommand} annotated parser rules.
* the subclass has to contain the command logic.
*
* @author haui
*
*/
public abstract class AstCommandTreeNode extends AstTreeNode {
public AstCommandTreeNode(Node> node, String value) {
super(node, value);
}
}