Lines Matching defs:calls
22 /** @var array The current CallWriter will write directly to this list of calls, Parser reads it */
23 public $calls = [];
129 * sections, rewrites blocks and adds document_start and document_end calls.
138 $last_call = end($this->calls);
139 $this->calls[] = ['section_close', [], $last_call[2]];
144 $this->calls = $B->process($this->calls);
149 array_unshift($this->calls, ['document_start', [], 0]);
150 $last_call = end($this->calls);
151 $this->calls[] = ['document_end', [], $last_call[2]];
162 $call = current($this->calls);
164 next($this->calls); //advance the pointer