Package org.rascalmpl.interpreter.matching

Source Code of org.rascalmpl.interpreter.matching.NotResult

/*******************************************************************************
* Copyright (c) 2009-2013 CWI
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:

*   * Jurgen J. Vinju - Jurgen.Vinju@cwi.nl - CWI
*   * Emilie Balland - (CWI)
*   * Arnold Lankamp - Arnold.Lankamp@cwi.nl
*******************************************************************************/
package org.rascalmpl.interpreter.matching;

import org.rascalmpl.interpreter.IEvaluatorContext;
import org.rascalmpl.interpreter.env.Environment;

/**
* The not operator backtracks over its argument just like the other operator.
* Notice however that any variables introduced below a not will never be available after it.
*
* @author jurgenv
*
*/
public class NotResult extends AbstractBooleanResult {
  private final IBooleanResult arg;
  private boolean firstTime;

  public NotResult(IEvaluatorContext ctx, IBooleanResult arg) {
    super(ctx);
   
    this.arg = arg;
  }

  @Override
  public void init() {
    super.init();
    arg.init();
    this.firstTime = true;
  }

  @Override
  public boolean hasNext() {
    return firstTime;
  }
 
  @Override
  public boolean next() {
    Environment old = ctx.getCurrentEnvt();
    ctx.pushEnv();
    try {
      firstTime = false;
      return !arg.next();
    }
    finally {
      ctx.unwind(old);
    }
  }
}
TOP

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

TOP
Copyright © 2018 www.massapi.com. 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.