log trunk/src/Token.d @ 239:7911f6a92e6e

age author description
Mon, 30 Jul 2007 12:36:04 +0000 aziz - Added 'new' and 'delete' declarations to Token and uncommented next and prev members. Added HEAD to TOK.
Sun, 22 Jul 2007 17:25:05 +0000 aziz - Made toString() static.
Sat, 21 Jul 2007 15:43:04 +0000 aziz - Added string table and toString() method to Token.
Fri, 13 Jul 2007 22:41:03 +0000 aziz - Fix: when parsing Declarator fails, type and ident is set to null.
Tue, 10 Jul 2007 20:11:02 +0000 aziz - Removed TOK.Number.
Sun, 08 Jul 2007 15:22:03 +0000 aziz - Implemented parseEnumDeclaration() and added class EnumDeclaration.
Fri, 06 Jul 2007 20:28:00 +0000 aziz - Added code for parsing IntNumber- and RealNumberExpressions.
Fri, 06 Jul 2007 18:37:03 +0000 aziz - Added TOK.Invalid.
Thu, 05 Jul 2007 10:35:04 +0000 aziz - Added code for parsing This-,Super-,Null-,Bool-,Dollar-,CharLiteral- and StringLiteralExpression.
Wed, 04 Jul 2007 22:19:01 +0000 aziz - scanEscapeSequences() doesn't return 0xFFFF as an error value anymore, because it is a valid codepoint usable by the user.
Sun, 01 Jul 2007 16:16:05 +0000 aziz - Added Identity and NotIdentity tokens.
Fri, 29 Jun 2007 19:14:05 +0000 aziz - Renamed function Token.span to Token.srcText.
Fri, 29 Jun 2007 15:07:05 +0000 aziz - Fixed loop of hex number scanner. Moved checks under the switch block.
Fri, 29 Jun 2007 05:47:00 +0000 aziz - The types of integers are recognized now.
Thu, 28 Jun 2007 12:31:00 +0000 aziz - Started properly implementing number scanner. Added stub for real numbers.
Tue, 26 Jun 2007 21:06:01 +0000 aziz - Scanning character literals correctly now.
Tue, 26 Jun 2007 10:06:01 +0000 aziz - Added unittest to test correct parsing of operator tokens.
Tue, 26 Jun 2007 08:58:02 +0000 aziz - Added code for parsing GreaterEqual, Greater, RShiftAssign, RShift, URShiftAssign and URShift tokens.
Tue, 26 Jun 2007 08:36:00 +0000 aziz - Added code for parsing LorEorG, LorG, LessEqual, LessThan, LShiftAssign and LShift tokens.
Tue, 26 Jun 2007 07:57:00 +0000 aziz - Added code for parsing Unordered, UorE, UorG, UorGorE, UorL, UorLorE, NotEqual and Not tokens.
Mon, 25 Jun 2007 17:45:02 +0000 aziz - Added missing commas after the items in the messages table.
Mon, 25 Jun 2007 13:34:03 +0000 aziz - Added struct for strings to Token with 'pf' = postfix.
Mon, 25 Jun 2007 08:37:02 +0000 aziz - Added code for parsing the '#line' special token.
Sun, 24 Jun 2007 18:01:02 +0000 aziz - Added code for parsing MulAssign, Mul, ModAssign, Mod, XorAssign and Xor tokens.
Sun, 24 Jun 2007 17:19:03 +0000 aziz - Added table for identifiers to Lexer.
Sun, 24 Jun 2007 15:02:02 +0000 aziz - Added code for parsing CatAssign and Tilde tokens.
Sun, 24 Jun 2007 12:26:02 +0000 aziz - Added code for parsing Assign and Equal tokens.
Sun, 24 Jun 2007 11:35:04 +0000 aziz - Added code for parsing PlusAssign, PlusPlus, Plus, MinusAssign, MinusMinus, Minus tokens.
Sun, 24 Jun 2007 11:15:03 +0000 aziz - Added code for parsing AndAssign, AndLogical and AndBinary tokens.
Sun, 24 Jun 2007 11:13:01 +0000 aziz - Added code for parsing OrAssign, OrLogical and OrBinary tokens.
Sun, 24 Jun 2007 11:02:05 +0000 aziz - Added code for parsing Dot, Slice and Ellipses tokens.
Sat, 23 Jun 2007 22:43:02 +0000 aziz - Added code for parsing Colon, Semicolon, Question, Comma and Dollar.
Sat, 23 Jun 2007 22:31:02 +0000 aziz - Added code for parsing braces.
Sat, 23 Jun 2007 21:48:03 +0000 aziz - Moved code for scanning character literals to separate function.
Sat, 23 Jun 2007 20:12:03 +0000 aziz - Removed Whitespace from enum list.
Sat, 23 Jun 2007 14:11:01 +0000 aziz - Started implementation of lexing numbers.
Sat, 23 Jun 2007 13:14:05 +0000 aziz - Parsing /= now.
Sat, 23 Jun 2007 07:46:00 +0000 aziz - Parsing string and character literals now (rudimentary implementation.)
Fri, 22 Jun 2007 14:12:02 +0000 aziz - Started implementation of scan().
Thu, 21 Jun 2007 18:36:04 +0000 aziz - Added TOK enum.
Mon, 28 May 2007 19:03:02 +0000 aziz Initial import.