gherkin.ast.Comment Maven / Gradle / Ivy
The newest version!
package gherkin.ast;
public class Comment extends Node {
private final String text;
public Comment(Location location, String text) {
super(location);
this.text = text;
}
public String getText() {
return text;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy