@@ 2690-2692 (lines=3) @@ | ||
2687 | $s = $this->seek(); |
|
2688 | ||
2689 | // speed shortcut |
|
2690 | if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] != "(") { |
|
2691 | return false; |
|
2692 | } |
|
2693 | ||
2694 | $inParens = $this->inParens; |
|
2695 | if ($this->literal("(") && |
|
@@ 3140-3142 (lines=3) @@ | ||
3137 | // a bracketed value (contained within in a tag definition) |
|
3138 | protected function tagBracket(&$parts, &$hasExpression) { |
|
3139 | // speed shortcut |
|
3140 | if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] != "[") { |
|
3141 | return false; |
|
3142 | } |
|
3143 | ||
3144 | $s = $this->seek(); |
|
3145 |