Lines Matching defs:call
6 * Generic call writer class to handle nesting of rendering instructions
18 * @param CallWriterInterface $CallWriter the parser's current call writer, i.e. the one above us in the chain
29 public function writeCall($call)
31 $this->calls[] = $call;
58 foreach ($unmerged_calls as $call) $this->addCall($call);
67 * @param array $call
69 protected function addCall($call)
72 if ($key && $call[0] == 'cdata' && $this->calls[$key - 1][0] == 'cdata') {
73 $this->calls[$key - 1][1][0] .= $call[1][0];
74 } elseif ($call[0] == 'eol') {
77 $this->calls[] = $call;