Package org.destecs.script.ast.expressions

Examples of org.destecs.script.ast.expressions.PExp


    }
  }

  private boolean checkWhenFor(AWhenStm node) throws Throwable
  {
    PExp forExp = whenForExp.get(node);
    if (forExp != null)
    {
      Value v = forExp.apply(expEval);
      return (v instanceof BooleanValue && ((BooleanValue) v).value);
    }
    return false;
  }
View Full Code Here


    return false;
  }
 
  private boolean checkOnceFor(AOnceStm node) throws Throwable
  {
    PExp forExp = onceForExp.get(node);
    if (forExp != null)
    {
      Value v = forExp.apply(expEval);
      return (v instanceof BooleanValue && ((BooleanValue) v).value);
    }
    return false;
  }
View Full Code Here

TOP

Related Classes of org.destecs.script.ast.expressions.PExp

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.