Package org.rascalmpl.interpreter.cursors

Examples of org.rascalmpl.interpreter.cursors.TopContext


  public Cursor(IValueFactory vf) {
    this.vf = vf;
  }

  public IValue makeCursor(IValue v) {
    return CursorFactory.makeCursor(v, new TopContext());
  }
View Full Code Here


  public IValue makeCursor(IValue v) {
    return CursorFactory.makeCursor(v, new TopContext());
  }

  public IValue makeCursor(IValue v, IString name) {
    return CursorFactory.makeCursor(v, new TopContext(name.getValue()));
  }
View Full Code Here

TOP

Related Classes of org.rascalmpl.interpreter.cursors.TopContext

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.