log lexer/Token.d @ 154:0ea5d2f3e96b

age author description
Mon, 21 Jul 2008 21:45:54 +0200 Anders Johnsen Parsing "this" as constructor. Also removed regex from the test run program(seg fault - dmd???)
Mon, 21 Jul 2008 20:28:11 +0200 Anders Johnsen Fixed some for parsing, and removed a little ugly bug.
Mon, 21 Jul 2008 18:16:50 +0200 Anders Johnsen Parsing for-loop.
Sun, 20 Jul 2008 23:23:56 +0200 Anders Johnsen Added support for extern keyword. Being ignored atm though. Also changed ast/Module, so that you can get a list of only vars, functions or structs.
Fri, 11 Jul 2008 21:47:57 +0200 johnsen Lots of changes:
Tue, 27 May 2008 10:32:31 +0200 Anders Johnsen Carius changes to the parser. Parsing attributes, lexing many keywords(not all yet).
Sun, 25 May 2008 21:07:48 +0200 Anders Johnsen Parsing <<, >> and >>>.
Wed, 21 May 2008 21:05:23 +0200 Anders Johnsen Lexing more types of strings. Now all's left is to parse the string in the AST. new_gen
Thu, 08 May 2008 10:54:29 +0200 Anders Johnsen Parsing char, wchar and dchar as basic types. new_gen
Tue, 06 May 2008 16:24:14 +0200 Anders Johnsen Added Modules. Right now it's very simple - will grow with time and need. new_gen
Sun, 04 May 2008 18:13:46 +0200 Anders Halager Major change to locations, tokens and expressions. new_gen
Fri, 02 May 2008 13:19:23 +0200 johnsen Renamed Add, Sub, Mul, Div and Mod in lexer to what they are (Plus, Minus....) new_gen
Thu, 01 May 2008 23:08:41 +0200 Anders Johnsen First update on the way to Arrays! :) new_gen
Thu, 01 May 2008 19:25:49 +0200 Anders Johnsen A LOT of bug fixing - also implemented implicit casts. If you do a --ast-dump-code on a target with some algebra of differant types, you should now see the type casts being made. Also, Tests are again back with only switches failing... new_gen
Tue, 29 Apr 2008 16:34:11 +0200 Anders Johnsen Added support for "%" - modulus / reminder new_gen
Thu, 24 Apr 2008 19:42:53 +0200 Anders Halager Only tests that dont pass now are structs and switches new_gen
Wed, 23 Apr 2008 00:57:45 +0200 Anders Halager Big update - Moving towards a better, more seperated parser new_gen
Tue, 22 Apr 2008 22:25:07 +0200 Anders Johnsen Added some docs for the lexer - now you can understand _some_ of the madness going on here :) new_gen
Sun, 20 Apr 2008 23:53:05 +0200 Anders Halager Bug-fixes new_gen
Sun, 20 Apr 2008 22:39:07 +0200 Anders Halager Switch statements support new_gen
Sun, 20 Apr 2008 11:20:28 +0200 Anders Johnsen Now supporting structs - both read and write. Still a few errors though, so watch out. new_gen
Fri, 18 Apr 2008 23:45:45 +0200 johnsen now handling structs to some extend
Fri, 18 Apr 2008 21:39:17 +0200 johnsen Now working with gdc also (gdc use reverse paremeter validating on function calls)
Fri, 18 Apr 2008 13:45:39 +0200 Anders Halager Support for while statements and fixed scope for if
Fri, 18 Apr 2008 12:33:03 +0200 johnsen Added Ne, Lt, Le, Gt, Ge and Not in lexer
Fri, 18 Apr 2008 12:24:14 +0200 johnsen Now lexing == as Equals
Fri, 18 Apr 2008 11:46:00 +0200 Anders Halager Added very simple if support.
Fri, 18 Apr 2008 02:01:38 +0200 johnsen First push