Examples of TermVisitor


Examples of org.spoofax.terms.TermVisitor

     * Report recoverable errors (e.g., inserted brackets).
     *
     * @param outerBeginOffset  The begin offset of the enclosing construct.
     */
  private static void gatherAmbiguities(IStrategoTerm term, final List<Error> errors) {
    new TermVisitor() {
      IStrategoTerm ambStart;
     
      public void preVisit(IStrategoTerm term) {
        if (ambStart == null && Environment.getTermFactory().makeConstructor("amb", 1) == tryGetConstructor(term)) {
          reportAmbiguity(term, errors);
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.