Пример #1
0
 /**
  * Sets the volatile flag and ripples all the way up the parse tree
  */
 public void setVolatile()
 {
     volatileFunction = true;
     if (parent != null && !parent.isVolatile())
     {
         parent.setVolatile();
     }
 }