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

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 - 2024 Weber Informatics LLC | Privacy Policy