Example #1
0
 public function interpret(array $context)
 {
     return $this->left->interpret($context) * $this->right->interpret($context);
 }
Example #2
0
 public function interpret(array $context)
 {
     return $this->expressionTree->interpret($context);
 }