@@ 2661-2663 (lines=3) @@ | ||
2658 | $s = $this->seek(); |
|
2659 | ||
2660 | // speed shortcut |
|
2661 | if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] != "(") { |
|
2662 | return false; |
|
2663 | } |
|
2664 | ||
2665 | $inParens = $this->inParens; |
|
2666 | if ($this->literal("(") && |
|
@@ 3111-3113 (lines=3) @@ | ||
3108 | // a bracketed value (contained within in a tag definition) |
|
3109 | protected function tagBracket(&$parts, &$hasExpression) { |
|
3110 | // speed shortcut |
|
3111 | if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] != "[") { |
|
3112 | return false; |
|
3113 | } |
|
3114 | ||
3115 | $s = $this->seek(); |
|
3116 |