Package org.rascalmpl.interpreter.matching

Examples of org.rascalmpl.interpreter.matching.ConcreteOptPattern


  public IMatchingResult buildMatcher(IEvaluatorContext eval) {
    java.util.List<IMatchingResult> kids = new ArrayList<IMatchingResult>(args.size());
    if (args.size() == 1) {
      kids.add(args.get(0).buildMatcher(eval));
    }
    return new ConcreteOptPattern(eval, this,  kids);
  }
View Full Code Here

TOP

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

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.