All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.unlaxer.tinyexpression.parser.javalang.AnnotationsParser Maven / Gradle / Ivy

There is a newer version: 1.4.4
Show newest version
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 AnnotationsParser extends LazyZeroOrMore{

  @Override
  public Supplier getLazyParser() {
    return AnnotationChoice::new;
  }

  @Override
  public Optional getLazyTerminatorParser() {
    return Optional.empty();
  }
  
  @TokenExtractor(timings = Timing.CreateOperatorOperandTree)
  public static List extractAnnotationss(Token thisParserParsed){
    return thisParserParsed.getAstNodeChildren().stream()
      .map(AnnotationParser::extractAnnotation)
      .collect(Collectors.toList());
  }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy