Lines Matching full:token
2431 var token = tokenizer.peekToken();
2433 switch (token.type) {
2437 if (matchesPeer(listBeginType, token.type)) {
2438 tokenizer.readToken(); // consume token
2448 tokenizer.readToken(); // consume token
2470 var token = tokenizer.peekToken();
2471 switch (token.type) {
2497 var token = tokenizer.readToken();
2500 if (token.type === 13/*ERROR*/)
2501 throw token.val;
2503 switch (token.type) {
2507 return readList.call(this, token.type);
2511 return sc_jsstring2string(token.val);
2513 return new sc_Char(token.val);
2517 return readReference.call(this, token.val);
2519 return storeRefence.call(this, token.val);
2521 return sc_jsstring2symbol(token.val);
2527 return token.val;
2529 throw "unexpected token " + token.type + " " + token.val;