org.unlaxer.tinyexpression.parser.javalang.ImportsParser Maven / Gradle / Ivy
package org.unlaxer.tinyexpression.parser.javalang;
import java.util.List;
import java.util.Optional;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import org.unlaxer.Token;
import org.unlaxer.parser.Parser;
import org.unlaxer.parser.combinator.LazyZeroOrMore;
import org.unlaxer.util.annotation.TokenExtractor;
import org.unlaxer.util.annotation.TokenExtractor.Timing;
public class ImportsParser extends LazyZeroOrMore{
@Override
public Supplier getLazyParser() {
return ImportParser::new;
}
@Override
public Optional getLazyTerminatorParser() {
return Optional.empty();
}
@TokenExtractor(timings = Timing.CreateOperatorOperandTree)
public static List extractImports(Token thisParserParsed){
return thisParserParsed.getAstNodeChildren().stream()
.map(ImportParser::extractImport)
.collect(Collectors.toList());
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy