Ejemplo n.º 1
0
 /**
  * Implementing the Visitable interface.
  */
 public function accept(Visitor $visitor)
 {
     return $visitor->visitConstantNode($this);
 }
Ejemplo n.º 2
0
 /**
  * Implementing the Visitable interface.
  */
 public function accept(Visitor $visitor)
 {
     return $visitor->visitVariableNode($this);
 }
Ejemplo n.º 3
0
 /**
  * Implementing the Visitable interface.
  */
 public function accept(Visitor $visitor)
 {
     return $visitor->visitNumberNode($this);
 }
Ejemplo n.º 4
0
 /**
  * Implementing the Visitable interface.
  */
 public function accept(Visitor $visitor)
 {
     return $visitor->visitExpressionNode($this);
 }
Ejemplo n.º 5
0
 /**
  * Implementing the Visitable interface.
  */
 public function accept(Visitor $visitor)
 {
     return $visitor->visitRationalNode($this);
 }