Package org.rascalmpl.interpreter.matching

Examples of org.rascalmpl.interpreter.matching.MultiVariablePattern


      super(__param1, __param2);
    }

    @Override
    public IMatchingResult buildMatcher(IEvaluatorContext eval) {
      return new MultiVariablePattern(eval, this, getQualifiedName());
    }
View Full Code Here


//          throw new ImplementationError(null);
        }       
        return new TypedMultiVariablePattern(eval, this, type, arg.getName());
      }
      if(arg.hasQualifiedName()){
        return new MultiVariablePattern(eval, this, arg.getQualifiedName());
      }
      throw new ImplementationError(null);
    }
View Full Code Here

TOP

Related Classes of org.rascalmpl.interpreter.matching.MultiVariablePattern

Copyright © 2018 www.massapicom. 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.