/**
  * @param $variableName
  * @param $variableFlag
  * @return bool
  */
 function addScopedVariable($variableName, $variableFlag)
 {
     $result = parent::addScopedVariable($variableName, $variableFlag);
     $this->setBeforeVariable(FALSE);
     return $result;
 }
 /**
  * Adds a variable to the current scope.
  * @param $variableName
  * @param $variableFlags
  * @return bool Whether the variable was a new one to the current scope.
  */
 function addScopedVariable($variableName, $variableFlags)
 {
     return $this->currentScope->addScopedVariable($variableName, $variableFlags);
 }