org.unlaxer.parser.combinator.NotASTLazyChain Maven / Gradle / Ivy
package org.unlaxer.parser.combinator;
import java.util.Optional;
import org.unlaxer.Name;
import org.unlaxer.RecursiveMode;
public abstract class NotASTLazyChain extends LazyChain{
private static final long serialVersionUID = 2119255169367002360L;
public NotASTLazyChain() {
super();
}
public NotASTLazyChain(Name name) {
super(name);
}
@Override
public Optional getNotAstNodeSpecifier() {
return Optional.of(RecursiveMode.containsRoot);
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy