org.unlaxer.tinyexpression.parser.javalang.JavaStyleDelimitorElements 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.clang.BlockComment;
import org.unlaxer.parser.clang.CPPComment;
import org.unlaxer.parser.combinator.LazyChoice;
import org.unlaxer.parser.elementary.SpaceDelimitor;
public class JavaStyleDelimitorElements extends LazyChoice{
@Override
public List getLazyParsers() {
return new Parsers(
Parser.get(BlockComment.class),
Parser.get(CPPComment.class),
Parser.get(SpaceDelimitor.class)
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy