Package org.rascalmpl.interpreter.cursors

Examples of org.rascalmpl.interpreter.cursors.UnionContext


    return CursorFactory.makeCursor(v, new TopContext(name.getValue()));
  }
 
  public ISet subset(ISet sub, ISet backing) {
    checkCursorness("second", backing);
    return new SetCursor(sub, new UnionContext(((ICursor)backing).getCtx(), (ISet) ((ICursor)backing).getWrappedValue()));
  }
View Full Code Here

TOP

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

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.