Package org.rascalmpl.interpreter.control_exceptions

Examples of org.rascalmpl.interpreter.control_exceptions.ContinueException


      __eval.setCurrentAST(this);
      __eval.notifyAboutSuspension(this);

      if (getTarget().isEmpty()) {
        throw new ContinueException();
      }
      else {
        throw new ContinueException(Names.name(getTarget().getName()));
      }

    }
View Full Code Here

TOP

Related Classes of org.rascalmpl.interpreter.control_exceptions.ContinueException

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.