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

it.twenfir.antlr.ast.Node Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
package it.twenfir.antlr.ast;

/**
 * A generic AST Node.
 * Useful for inner nodes without own properties, but with interesting children.
 */
public class Node extends AstNode {

    public Node(Location location) {
        super(location);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy