log ast/Exp.d @ 164:ba94fd563548

age author description
Tue, 22 Jul 2008 16:53:47 +0200 Anders Johnsen The symbol for the constructor a "new"-exp is calling is now stored in callSym in NewExp.
Tue, 22 Jul 2008 16:22:58 +0200 Anders Johnsen Fixed symbol for a functions members.
Tue, 22 Jul 2008 13:29:20 +0200 Anders Halager Improved static arrays
Tue, 22 Jul 2008 00:33:58 +0200 Anders Johnsen Parsing "new", putting it in AST and performs some tests on it. Eg. if the contructor exists and the params matches.
Mon, 21 Jul 2008 17:56:33 +0200 Anders Johnsen Changes Scope to use char[]'s insted of Identifiers for lookup.
Fri, 18 Jul 2008 13:32:34 +0200 Anders Halager Fixed up our simplify functions
Fri, 11 Jul 2008 21:47:57 +0200 johnsen Lots of changes:
Sat, 21 Jun 2008 20:41:18 +0200 Anders Halager Added a Symbol
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:13:56 +0200 Anders Halager Support shifts and binary logical operators in codegen
Sun, 25 May 2008 21:07:48 +0200 Anders Johnsen Parsing <<, >> and >>>.
Sun, 25 May 2008 19:13:07 +0200 Anders Johnsen Non compileing commit. Work on floating points and casts
Sun, 25 May 2008 16:40:38 +0200 Anders Johnsen Removed misc/Error.d and is now using the error system all way through.
Sun, 25 May 2008 15:42:44 +0200 Anders Johnsen Parsing basic integers and floats.
Sun, 25 May 2008 14:56:05 +0200 Anders Halager Make it compile
Sun, 25 May 2008 14:46:01 +0200 Anders Halager merge
Sun, 25 May 2008 14:40:14 +0200 Anders Halager Cleanup of codegen, better support for operators a few bugfixes new_gen
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
Tue, 06 May 2008 21:55:29 +0200 Anders Johnsen Fixed tests - forgot some stuff in codegen. new_gen
Tue, 06 May 2008 18:51:08 +0200 Anders Johnsen Now D-Mangling the function types. Still need to mangle "scopes" - by that i mean structs, classes and modules. new_gen
Mon, 05 May 2008 20:53:13 +0200 Anders Johnsen Removed the Symbol from semantics - it was not needed anymore. From now on you set the type by doing a setType on an Identifier. new_gen
Mon, 05 May 2008 18:44:20 +0200 Anders Johnsen A few better parser errors plus renaming most of the sema classes to match that they do now. Some have changes a lot. 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 21:21:18 +0200 Anders Johnsen Fixed a bug that made arrays as params fail big time new_gen
Fri, 02 May 2008 20:18:50 +0200 Anders Halager Allow indexing of pointers also new_gen
Fri, 02 May 2008 19:54:22 +0200 Anders Halager Parse array indexing, and allow reading from arrays new_gen
Fri, 02 May 2008 18:23:33 +0200 Anders Johnsen Now you can declare array new_gen
Fri, 02 May 2008 17:33:50 +0200 Anders Johnsen Pointers working now - big YAY new_gen
Fri, 02 May 2008 16:39:04 +0200 Anders Halager branch merge new_gen
Fri, 02 May 2008 16:38:31 +0200 Anders Halager Parse and gen for dereferences new_gen
Fri, 02 May 2008 16:37:13 +0200 Anders Johnsen Now able of --ast-dump-code with Pointer types and also codeGen int* x; 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 20:15:22 +0200 Anders Johnsen Been working on the floating point parsing. Still a bit of work to do here. new_gen
Tue, 29 Apr 2008 18:17:09 +0200 Anders Halager Merge new_gen
Tue, 29 Apr 2008 15:13:38 +0200 Anders Halager Now Decl's have a DType type(), and should use varType and returnType to get the old type id new_gen
Tue, 29 Apr 2008 16:34:11 +0200 Anders Johnsen Added support for "%" - modulus / reminder new_gen
Tue, 29 Apr 2008 15:00:11 +0200 Anders Johnsen Dumping Ast with AstPrinter is now possible again! :) new_gen
Tue, 29 Apr 2008 00:31:56 +0200 Anders Halager Make most of the tests pass again new_gen
Mon, 28 Apr 2008 21:51:39 +0200 Anders Halager Add types to our Exp new_gen
Mon, 28 Apr 2008 21:40:00 +0200 Anders Johnsen Now return types works for structs... Also, simplyfing in AST have been startet - but still messy. This update is a little messy... new_gen
Sat, 26 Apr 2008 23:11:13 +0200 Anders Johnsen Now structs are somewhat useable to use. 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
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 13:01:11 +0200 Anders Halager Some support for the rest of the boolean operators
Fri, 18 Apr 2008 12:50:54 +0200 Anders Halager Starting to work on bool support, for now == works
Fri, 18 Apr 2008 02:01:38 +0200 johnsen First push