Home | History | Annotate | Download | only in v8-v4

Lines Matching full:token

2425 	    var token = tokenizer.peekToken();
2427 switch (token.type) {
2431 if (matchesPeer(listBeginType, token.type)) {
2432 tokenizer.readToken(); // consume token
2442 tokenizer.readToken(); // consume token
2464 var token = tokenizer.peekToken();
2465 switch (token.type) {
2491 var token = tokenizer.readToken();
2494 if (token.type === 13/*ERROR*/)
2495 throw token.val;
2497 switch (token.type) {
2501 return readList.call(this, token.type);
2505 return sc_jsstring2string(token.val);
2507 return new sc_Char(token.val);
2511 return readReference.call(this, token.val);
2513 return storeRefence.call(this, token.val);
2515 return sc_jsstring2symbol(token.val);
2521 return token.val;
2523 throw "unexpected token " + token.type + " " + token.val;