Lines Matching defs:calls
31 $this->calls[] = $call;
35 public function writeCalls($calls)
37 $this->calls = array_merge($this->calls, $calls);
43 $last_call = end($this->calls);
55 $unmerged_calls = $this->calls;
56 $this->calls = [];
60 $first_call = reset($this->calls);
61 $this->callWriter->writeCall(["nest", [$this->calls], $first_call[2]]);
71 $key = count($this->calls);
72 if ($key && $call[0] == 'cdata' && $this->calls[$key - 1][0] == 'cdata') {
73 $this->calls[$key - 1][1][0] .= $call[1][0];
77 $this->calls[] = $call;