it.twenfir.antlr.ast.Node Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twenfir-antlr Show documentation
Show all versions of twenfir-antlr Show documentation
Add-ons for the ANTLR parser generator
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);
}
}