Lines Matching refs:commentTokens
190 $commentTokens = parent::tokenizeString('<?php '.$content.'?>', $eolChar);
193 array_shift($commentTokens);
194 array_pop($commentTokens);
197 $commentTokens[0]['content'] = substr($commentTokens[0]['content'], 1);
204 $firstContent = $commentTokens[0]['content'];
208 if (($commentTokens[0]['code'] === T_LNUMBER
209 || $commentTokens[0]['code'] === T_DNUMBER)
210 && $commentTokens[1]['code'] === T_STRING
212 $firstContent .= $commentTokens[1]['content'];
213 array_shift($commentTokens);
219 && $commentTokens[1]['content'] !== '-'
221 array_shift($commentTokens);
246 array_splice($tokens, $stackPtr, 1, $commentTokens);