Package org.allspice.parser

Examples of org.allspice.parser.Translation.reduce()


  public Object reduce(Rule rule, Parser parser,ParserState state,PositionRange range) throws SyntaxError {
    Translation t = rules.get(rule) ;
    if (t == null) {
      return rule.rhs.isEmpty() ? null : state.reductions.head.o ;
    }
    return t.reduce(range, parser, state) ;
  }
 
  /**
   * @param r
   * @param t
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.