|
@@ 590-592 (lines=3) @@
|
| 587 |
|
$s = $this->seek(); |
| 588 |
|
|
| 589 |
|
// speed shortcut |
| 590 |
|
if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] !== "(") { |
| 591 |
|
return false; |
| 592 |
|
} |
| 593 |
|
|
| 594 |
|
$inParens = $this->inParens; |
| 595 |
|
if ($this->literal("(") && |
|
@@ 1198-1200 (lines=3) @@
|
| 1195 |
|
protected function tagBracket(&$parts, &$hasExpression) |
| 1196 |
|
{ |
| 1197 |
|
// speed shortcut |
| 1198 |
|
if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] !== "[") { |
| 1199 |
|
return false; |
| 1200 |
|
} |
| 1201 |
|
|
| 1202 |
|
$s = $this->seek(); |
| 1203 |
|
|