@@ 2695-2697 (lines=3) @@ | ||
2692 | $s = $this->seek(); |
|
2693 | ||
2694 | // speed shortcut |
|
2695 | if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] != "(") { |
|
2696 | return false; |
|
2697 | } |
|
2698 | ||
2699 | $inParens = $this->inParens; |
|
2700 | if ($this->literal("(") && |
|
@@ 3145-3147 (lines=3) @@ | ||
3142 | // a bracketed value (contained within in a tag definition) |
|
3143 | protected function tagBracket(&$parts, &$hasExpression) { |
|
3144 | // speed shortcut |
|
3145 | if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] != "[") { |
|
3146 | return false; |
|
3147 | } |
|
3148 | ||
3149 | $s = $this->seek(); |
|
3150 |