Best Atoum code snippet using token.current
DocBlockScanner.php
Source:DocBlockScanner.php
...96 $tokens = $this->tokenize();97 $tagIndex = null;98 reset($tokens);99 SCANNER_TOP:100 $token = current($tokens);101 switch ($token[0]) {102 case 'DOCBLOCK_NEWLINE':103 if ($this->shortDescription != '' && $tagIndex === null) {104 $mode = 2;105 } else {106 $this->longDescription .= $token[1];107 }108 goto SCANNER_CONTINUE;109 //goto no break needed110 case 'DOCBLOCK_WHITESPACE':111 case 'DOCBLOCK_TEXT':112 if ($tagIndex !== null) {113 $this->tags[$tagIndex]['value'] .= ($this->tags[$tagIndex]['value'] == '')114 ? $token[1]115 : ' ' . $token[1];116 goto SCANNER_CONTINUE;117 } elseif ($mode <= 2) {118 if ($mode == 1) {119 $this->shortDescription .= $token[1];120 } else {121 $this->longDescription .= $token[1];122 }123 goto SCANNER_CONTINUE;124 }125 //gotos no break needed126 case 'DOCBLOCK_TAG':127 array_push($this->tags, ['name' => $token[1],128 'value' => '']);129 end($this->tags);130 $tagIndex = key($this->tags);131 $mode = 3;132 goto SCANNER_CONTINUE;133 //goto no break needed134 case 'DOCBLOCK_COMMENTEND':135 goto SCANNER_END;136 }137 SCANNER_CONTINUE:138 if (next($tokens) === false) {139 goto SCANNER_END;140 }141 goto SCANNER_TOP;142 SCANNER_END:143 $this->shortDescription = trim($this->shortDescription);144 $this->longDescription = trim($this->longDescription);145 $this->isScanned = true;146 }147 /**148 * @return array149 */150 protected function tokenize()151 {152 static $CONTEXT_INSIDE_DOCBLOCK = 0x01;153 static $CONTEXT_INSIDE_ASTERISK = 0x02;154 $context = 0x00;155 $stream = $this->docComment;156 $streamIndex = null;157 $tokens = [];158 $tokenIndex = null;159 $currentChar = null;160 $currentWord = null;161 $currentLine = null;162 $MACRO_STREAM_ADVANCE_CHAR = function ($positionsForward = 1) use (163 &$stream,164 &$streamIndex,165 &$currentChar,166 &$currentWord,167 &$currentLine168 ) {169 $positionsForward = ($positionsForward > 0) ? $positionsForward : 1;170 $streamIndex = ($streamIndex === null) ? 0 : $streamIndex + $positionsForward;171 if (!isset($stream[$streamIndex])) {172 $currentChar = false;173 return false;174 }175 $currentChar = $stream[$streamIndex];176 $matches = [];177 $currentLine = (preg_match('#(.*?)\r?\n#', $stream, $matches, null, $streamIndex) === 1)178 ? $matches[1]179 : substr($stream, $streamIndex);180 if ($currentChar === ' ') {181 $currentWord = (preg_match('#( +)#', $currentLine, $matches) === 1) ? $matches[1] : $currentLine;182 } else {183 $currentWord = (($matches = strpos($currentLine, ' ')) !== false)184 ? substr($currentLine, 0, $matches)185 : $currentLine;186 }187 return $currentChar;188 };189 $MACRO_STREAM_ADVANCE_WORD = function () use (&$currentWord, &$MACRO_STREAM_ADVANCE_CHAR) {190 return $MACRO_STREAM_ADVANCE_CHAR(strlen($currentWord));191 };192 $MACRO_STREAM_ADVANCE_LINE = function () use (&$currentLine, &$MACRO_STREAM_ADVANCE_CHAR) {193 return $MACRO_STREAM_ADVANCE_CHAR(strlen($currentLine));194 };195 $MACRO_TOKEN_ADVANCE = function () use (&$tokenIndex, &$tokens) {196 $tokenIndex = ($tokenIndex === null) ? 0 : $tokenIndex + 1;197 $tokens[$tokenIndex] = ['DOCBLOCK_UNKNOWN', ''];198 };199 $MACRO_TOKEN_SET_TYPE = function ($type) use (&$tokenIndex, &$tokens) {200 $tokens[$tokenIndex][0] = $type;201 };202 $MACRO_TOKEN_APPEND_CHAR = function () use (&$currentChar, &$tokens, &$tokenIndex) {203 $tokens[$tokenIndex][1] .= $currentChar;204 };205 $MACRO_TOKEN_APPEND_WORD = function () use (&$currentWord, &$tokens, &$tokenIndex) {206 $tokens[$tokenIndex][1] .= $currentWord;207 };208 $MACRO_TOKEN_APPEND_WORD_PARTIAL = function ($length) use (&$currentWord, &$tokens, &$tokenIndex) {209 $tokens[$tokenIndex][1] .= substr($currentWord, 0, $length);210 };211 $MACRO_TOKEN_APPEND_LINE = function () use (&$currentLine, &$tokens, &$tokenIndex) {212 $tokens[$tokenIndex][1] .= $currentLine;213 };214 $MACRO_STREAM_ADVANCE_CHAR();215 $MACRO_TOKEN_ADVANCE();216 TOKENIZER_TOP:217 if ($context === 0x00 && $currentChar === '/' && $currentWord === '/**') {218 $MACRO_TOKEN_SET_TYPE('DOCBLOCK_COMMENTSTART');219 $MACRO_TOKEN_APPEND_WORD();220 $MACRO_TOKEN_ADVANCE();221 $context |= $CONTEXT_INSIDE_DOCBLOCK;222 $context |= $CONTEXT_INSIDE_ASTERISK;223 if ($MACRO_STREAM_ADVANCE_WORD() === false) {224 goto TOKENIZER_END;225 }226 goto TOKENIZER_TOP;227 }228 if ($context & $CONTEXT_INSIDE_DOCBLOCK && $currentWord === '*/') {229 $MACRO_TOKEN_SET_TYPE('DOCBLOCK_COMMENTEND');230 $MACRO_TOKEN_APPEND_WORD();231 $MACRO_TOKEN_ADVANCE();232 $context &= ~$CONTEXT_INSIDE_DOCBLOCK;233 if ($MACRO_STREAM_ADVANCE_WORD() === false) {234 goto TOKENIZER_END;235 }236 goto TOKENIZER_TOP;237 }238 if ($currentChar === ' ' || $currentChar === "\t") {239 $MACRO_TOKEN_SET_TYPE(240 ($context & $CONTEXT_INSIDE_ASTERISK)241 ? 'DOCBLOCK_WHITESPACE'242 : 'DOCBLOCK_WHITESPACE_INDENT'243 );244 $MACRO_TOKEN_APPEND_WORD();245 $MACRO_TOKEN_ADVANCE();246 if ($MACRO_STREAM_ADVANCE_WORD() === false) {247 goto TOKENIZER_END;248 }249 goto TOKENIZER_TOP;250 }251 if ($currentChar === '*') {252 if (($context & $CONTEXT_INSIDE_DOCBLOCK) && ($context & $CONTEXT_INSIDE_ASTERISK)) {253 $MACRO_TOKEN_SET_TYPE('DOCBLOCK_TEXT');254 } else {255 $MACRO_TOKEN_SET_TYPE('DOCBLOCK_ASTERISK');256 $context |= $CONTEXT_INSIDE_ASTERISK;257 }258 $MACRO_TOKEN_APPEND_CHAR();259 $MACRO_TOKEN_ADVANCE();260 if ($MACRO_STREAM_ADVANCE_CHAR() === false) {261 goto TOKENIZER_END;262 }263 goto TOKENIZER_TOP;264 }265 if ($currentChar === '@') {266 $MACRO_TOKEN_SET_TYPE('DOCBLOCK_TAG');267 $MACRO_TOKEN_APPEND_WORD();268 $MACRO_TOKEN_ADVANCE();269 if ($MACRO_STREAM_ADVANCE_WORD() === false) {270 goto TOKENIZER_END;271 }272 goto TOKENIZER_TOP;273 }274 if ($currentChar === "\n") {275 $MACRO_TOKEN_SET_TYPE('DOCBLOCK_NEWLINE');276 $MACRO_TOKEN_APPEND_CHAR();277 $MACRO_TOKEN_ADVANCE();278 $context &= ~$CONTEXT_INSIDE_ASTERISK;279 if ($MACRO_STREAM_ADVANCE_CHAR() === false) {280 goto TOKENIZER_END;281 }282 goto TOKENIZER_TOP;283 }284 $MACRO_TOKEN_SET_TYPE('DOCBLOCK_TEXT');285 $MACRO_TOKEN_APPEND_LINE();286 $MACRO_TOKEN_ADVANCE();287 if ($MACRO_STREAM_ADVANCE_LINE() === false) {288 goto TOKENIZER_END;...
current
Using AI Code Generation
1$token = new Token();2$token->generate();3$_SESSION['token'] = $token->value;4$token = new Token();5$_SESSION['token'] = $token->generate();6if(Token::check(Input::get('token'))){7}
current
Using AI Code Generation
1$token = new Token();2$token->get_token();3$token = new Token();4$token->get_token_new();5$token = new Token();6$token->get_token_old();
current
Using AI Code Generation
1$token = new Token();2$token->setToken();3echo $token->getToken();4$token = new Token();5$token->setToken();6echo $token->getToken();7$token = new Token();8$token->setToken();9echo $token->getToken();10$token = new Token();11$token->setToken();12echo $token->getToken();13$token = new Token();14$token->setToken();15echo $token->getToken();16$token = new Token();17$token->setToken();18echo $token->getToken();19$token = new Token();20$token->setToken();21echo $token->getToken();22$token = new Token();23$token->setToken();24echo $token->getToken();25$token = new Token();26$token->setToken();27echo $token->getToken();28$token = new Token();29$token->setToken();30echo $token->getToken();31$token = new Token();32$token->setToken();33echo $token->getToken();34$token = new Token();35$token->setToken();36echo $token->getToken();37$token = new Token();38$token->setToken();39echo $token->getToken();40$token = new Token();41$token->setToken();42echo $token->getToken();43$token = new Token();44$token->setToken();45echo $token->getToken();46$token = new Token();47$token->setToken();48echo $token->getToken();
current
Using AI Code Generation
1$token = new Token();2if ($token->check(Input::get('token'))){3 echo 'Token matches';4}else{5 echo 'Token does not match';6}7if (Token::check(Input::get('token'))){8 echo 'Token matches';9}else{10 echo 'Token does not match';11}
current
Using AI Code Generation
1$token = new Token;2$token->generate();3if ($token->check($_POST['token'])) {4 echo "Token verified";5} else {6 echo "Token not verified";7}8$token = new Token;9$token->generate();10if ($token->check($_POST['token'])) {11 echo "Token verified";12} else {13 echo "Token not verified";14}15$token = new Token;16$token->generate();17if ($token->check($_POST['token'])) {18 echo "Token verified";19} else {20 echo "Token not verified";21}
current
Using AI Code Generation
1$token = new Token();2$token->get();3$token->check();4Token::get();5Token::check();6class greeting {7 public static function welcome() {8 echo "Hello World!";9 }10}11greeting::welcome();12class greeting {13 public static function welcome() {14 echo "Hello World!";15 }16}17greeting::welcome();18class greeting {19 public static function welcome() {20 echo "Hello World!";21 }22}23class greeting {24 public static function welcome() {25 echo "Hello World!";26 }27}28greeting::welcome();29class greeting {30 public static function welcome() {31 echo "Hello World!";32 }33}34greeting::welcome();35class greeting {36 public static function welcome() {37 echo "Hello World!";38 }39}40greeting::welcome();41class greeting {42 public static function welcome() {43 echo "Hello World!";44 }45}46class greeting {47 public static function welcome() {48 echo "Hello World!";49 }50}51greeting::welcome();52class greeting {53 public static function welcome()
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Execute automation tests with current on a cloud-based Grid of 3000+ real browsers and operating systems for both web and mobile applications.
Test now for FreeGet 100 minutes of automation test minutes FREE!!