|
@@ 1216-1221 (lines=6) @@
|
| 1213 |
|
// it's likely to be an array which might have arguments in it. This |
| 1214 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 1215 |
|
// end of it. |
| 1216 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 1217 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1218 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 1219 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 1220 |
|
} |
| 1221 |
|
} |
| 1222 |
|
|
| 1223 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1224 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 1223-1228 (lines=6) @@
|
| 1220 |
|
} |
| 1221 |
|
} |
| 1222 |
|
|
| 1223 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1224 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1225 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 1226 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 1227 |
|
} |
| 1228 |
|
} |
| 1229 |
|
|
| 1230 |
|
switch ($tokens[$i]['code']) { |
| 1231 |
|
case T_BITWISE_AND: |