org.unlaxer.tinyexpression.parser.javalang.AnnotationChoiceElement Maven / Gradle / Ivy
package org.unlaxer.tinyexpression.parser.javalang;
import java.util.List;
import org.unlaxer.parser.Parser;
import org.unlaxer.parser.Parsers;
import org.unlaxer.parser.combinator.LazyChoice;
public class AnnotationChoiceElement extends LazyChoice{
@Override
public List getLazyParsers() {
return new Parsers(
Parser.get(AnnotationParser.class),
Parser.get(LineAnnotationParser.class)
);
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy