gherkin.ast.Node Maven / Gradle / Ivy
package gherkin.ast;
public abstract class Node {
private final String type = getClass().getSimpleName();
private final Location location;
protected Node(Location location) {
this.location = location;
}
public Location getLocation() {
return location;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy