org.unlaxer.parser.elementary.WildCardLineParser Maven / Gradle / Ivy
package org.unlaxer.parser.elementary;
import org.unlaxer.parser.Parser;
import org.unlaxer.parser.Parsers;
import org.unlaxer.parser.combinator.LazyChain;
public class WildCardLineParser extends LazyChain{
@Override
public Parsers getLazyParsers() {
return new Parsers(
Parser.get(StartOfLineParser.class),
new WildCardStringTerninatorParser(
true ,
Parser.get(LineTerminatorParser.class)
),
Parser.get(LineTerminatorParser.class)
);
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy