Change-Id: I384038dcc77ff55307199740ce6bf15af9fd6c2b
template <class T>
void RunVisitorT<T>::visitprivate(const WhileExp &e)
{
+
+ //Create local exec visitor
+ ShortCutVisitor SCTest;
+
+ //manage & and | like && and ||
+ e.getTest().accept(SCTest);
//condition
e.getTest().accept(*this);
+
InternalType* pIT = getResult();
+
while (pIT->isTrue())
{
pIT->killMe();