comparison trunk/src/cmd/Generate.d @ 507:996041463028

Removed TOK.WCharLiteral and TOK.DCharLiteral. Removed unnecessary TOK members.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Wed, 12 Dec 2007 02:41:30 +0100
parents ea8c7459f1c4
children 0df647660e76
comparison
equal deleted inserted replaced
506:1b897a4536a4 507:996041463028
435 print.format(tags[DP.Comment], t, srcText); 435 print.format(tags[DP.Comment], t, srcText);
436 break; 436 break;
437 case TOK.String: 437 case TOK.String:
438 print.format(tags[DP.StringLiteral], srcText); 438 print.format(tags[DP.StringLiteral], srcText);
439 break; 439 break;
440 case TOK.CharLiteral, TOK.WCharLiteral, TOK.DCharLiteral: 440 case TOK.CharLiteral:
441 print.format(tags[DP.CharLiteral], srcText); 441 print.format(tags[DP.CharLiteral], srcText);
442 break; 442 break;
443 case TOK.Assign, TOK.Equal, 443 case TOK.Assign, TOK.Equal,
444 TOK.Less, TOK.Greater, 444 TOK.Less, TOK.Greater,
445 TOK.LShiftAssign, TOK.LShift, 445 TOK.LShiftAssign, TOK.LShift,