69        public function push(
$type, $value, $reference = NULL) {
 
   70                $this->_stack[$this->_count++] = array(
'type'           => 
$type,
 
   72                                                                                           'reference'  => $reference
 
   74                if (
$type == 
'Function') {
 
   76                        if ($localeFunction != $value) {
 
   77                                $this->_stack[($this->_count - 1)][
'localeValue'] = $localeFunction;
 
   87        public function pop() {
 
   88                if ($this->_count > 0) {
 
  101                if ($this->_count - 
$n < 0) {
 
  104                return $this->_stack[$this->_count - 
$n];
 
  111                $this->_stack = array();
 
An exception for terminatinating execution or to throw for unit testing.
count()
Return the number of entries on the stack.
last($n=1)
Return an entry from the stack without removing it.
push($type, $value, $reference=NULL)
Push a new entry onto the stack.
pop()
Pop the last entry from the stack.
static _localeFunc($function)