Package org.rascalmpl.interpreter.asserts

Examples of org.rascalmpl.interpreter.asserts.NotYetImplemented


  public Result<IValue> interpret(IEvaluator<Result<IValue>> eval) {
    throw new NotYetImplemented(this);
  }

  public Result<IValue> assignment(AssignableEvaluator eval) {
    throw new NotYetImplemented(this);
  }
View Full Code Here


   * Computes internal type representations for type literals and patterns.
   * @param instantiateTypeParameters TODO
   * @param eval TODO
   */
  public Type typeOf(Environment env, boolean instantiateTypeParameters, IEvaluator<Result<IValue>> eval) {
    throw new NotYetImplemented(this);
  }
View Full Code Here

  public Type typeOf(Environment env, boolean instantiateTypeParameters, IEvaluator<Result<IValue>> eval) {
    throw new NotYetImplemented(this);
  }

  public Type __evaluate(org.rascalmpl.interpreter.BasicTypeEvaluator eval) {
    throw new NotYetImplemented(this);
  }
View Full Code Here

  /**
   * Recursively build a back-tracking data-structure, use getBacktracker if you are just a client of IBooleanResult
   */
  public IBooleanResult buildBacktracker(IEvaluatorContext eval) {
    System.err.println("ambiguity at " + getLocation());
    throw new NotYetImplemented(this);
  }
View Full Code Here

TOP

Related Classes of org.rascalmpl.interpreter.asserts.NotYetImplemented

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.