gherkin.AstNode Maven / Gradle / Ivy
The newest version!
package gherkin;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static gherkin.Parser.RuleType;
import static gherkin.Parser.TokenType;
public class AstNode {
private final Map> subItems = new HashMap>();
public final RuleType ruleType;
public AstNode(RuleType ruleType) {
this.ruleType = ruleType;
}
public void add(RuleType ruleType, Object obj) {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy