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

org.unlaxer.tinyexpression.parser.AbstractMethodParser Maven / Gradle / Ivy

There is a newer version: 1.4.4
Show newest version
package org.unlaxer.tinyexpression.parser;

import org.unlaxer.parser.Parser;
import org.unlaxer.parser.Parsers;
import org.unlaxer.parser.clang.IdentifierParser;
import org.unlaxer.tinyexpression.parser.javalang.JavaStyleDelimitedLazyChain;

public abstract class AbstractMethodParser extends JavaStyleDelimitedLazyChain implements MethodParser{
  
  @Override
  public org.unlaxer.parser.Parsers getLazyParsers() {
    return new Parsers(
        Parser.get(returningParser()),
        Parser.get(IdentifierParser.class),
        Parser.get(MethodParametersParser.class),
        Parser.get(LeftCurlyBraceParser.class),
        Parser.get(expressionParser()),
        Parser.get(RightCurlyBraceParser.class)
    );
  }
  
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy