Package org.rascalmpl.interpreter.matching

Examples of org.rascalmpl.interpreter.matching.TypedMultiVariablePattern


        // TODO: Question, should we allow non terminal types in splices?
        if (type instanceof NonTerminalType) {
          throw new UnsupportedOperation("splicing match", type, this);
//          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.TypedMultiVariablePattern

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.