about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2011-02-02Store tydesc for whole body, not just fields, in objs and closures. Handles u...Graydon Hoare-14/+5
2011-02-02Handle missing case in linearize_ty_params.Graydon Hoare-0/+1
2011-02-02Change decl_upcall to decl_upcall_glue, more correct name.Graydon Hoare-2/+2
2011-02-02Add trace and trap helpers to trans for low level diagnostics.Graydon Hoare-0/+18
2011-02-02Add most of the plumbing for native items and add support for parsing native ...Rafael Ávila de Espíndola-4/+96
2011-02-01Fix buggy argument assembly for upcall_get_type_desc. Can now complete calls ...Graydon Hoare-5/+5
2011-02-01Add very minimal support for native modules. For now they must be empty.Rafael Ávila de Espíndola-2/+64
2011-02-01Pick up case for expr_block from brson's other branch.Graydon Hoare-0/+15
2011-02-01Implement 'else if'Graydon Hoare-28/+104
2011-02-01Use dynamic GEP and silly offset-encoding on tydescs. Successful call into a ...Graydon Hoare-40/+70
2011-02-01Add ty_type.Graydon Hoare-0/+10
2011-01-31More work on derived tydescs. Can compile simple tests with generic objects.Graydon Hoare-33/+53
2011-01-31Majority of the remaining work for derived tydescs. Not quite working yet.Graydon Hoare-106/+159
2011-01-31Re-XFAIL those tests enabled by commit a2789363e107114fdc0ff45a208ae67a56bce73a.Graydon Hoare-2/+17
2011-01-31Run cleanups in reverse order. Not presently observable, no dtors.Graydon Hoare-1/+4
2011-01-31Un-XFAIL some compile-fail testsBrian Anderson-0/+7
2011-01-30Reenable xfailed tests for rustboot that pass with trivial or no modificationsBrian Anderson-40/+25
2011-01-28Fix a bug in linearize and get the captured tydescs type right.Graydon Hoare-9/+11
2011-01-28Pass linearized typarams to make_generic_glue. Steps toward derived tydescs.Graydon Hoare-5/+22
2011-01-28Pass tydesc array into type glue fns as first arg. Required for derived tydes...Graydon Hoare-40/+53
2011-01-28Pass --error-exitcode=1 to valgrind in Makefile; XFAIL test that was memcheck...Graydon Hoare-1/+1
2011-01-28Teach rustc to failBrian Anderson-11/+31
2011-01-28Correctly handle "import foo = bar.zed;".Rafael Ávila de Espíndola-28/+54
2011-01-27Add helper function for derived type descriptors.Graydon Hoare-2/+45
2011-01-27Merge branch 'master' of github.com:graydon/rustGraydon Hoare-19/+10
2011-01-27Fix bug in box-unbox.rs test.Graydon Hoare-1/+1
2011-01-27Un-XFAIL 3 tests that started working recently.Graydon Hoare-0/+3
2011-01-27Simplify and fix the resolution of expr_path. With this we now get to codegenRafael Ávila de Espíndola-19/+10
2011-01-27Resolve type paths.Rafael Ávila de Espíndola-20/+4
2011-01-27Handle paths correctly. This lets us handle one more test :-)Rafael Ávila de Espíndola-13/+23
2011-01-27First step for supporting "case (foo.bar(?zed))": Change the ast ofRafael Ávila de Espíndola-19/+25
2011-01-27Correctly split a.b.c into its path and field access components.Rafael Ávila de Espíndola-12/+14
2011-01-27Note issue in comments.Graydon Hoare-3/+2
2011-01-26Update various README files in the tree.Graydon Hoare-12/+130
2011-01-26Change rustc warning to be a little less dismissive.Graydon Hoare-2/+2
2011-01-26Slight makefile refactoring.Graydon Hoare-7/+8
2011-01-26Fix bug in generic-obj.rs testcase.Graydon Hoare-1/+1
2011-01-26Teach typeck to handle obj item names when used as type names, not just const...Graydon Hoare-18/+47
2011-01-26Fix test now that we look at the full error-pattern. Also enable it for rustc.Rafael Ávila de Espíndola-1/+2
2011-01-26Fix issue 207 by considering everything after the first : in the error-patternRafael Ávila de Espíndola-5/+4
2011-01-25Print an error if we try to refer to a module in an expr_path.Rafael Ávila de Espíndola-1/+22
2011-01-25Small first step in expr_path. Call find_final_def just to detectRafael Ávila de Espíndola-24/+48
2011-01-24Un-XFAIL a couple more rustc tests that have started working recently.Graydon Hoare-0/+2
2011-01-24Implement autoderef in rustc. Un-XFAIL autoderef-full-lval.rs.Graydon Hoare-24/+130
2011-01-24Do better at parsing expr_paths with type arguments.Graydon Hoare-19/+23
2011-01-24Switch from booleans to symbolic tags in a few places.Graydon Hoare-46/+64
2011-01-24Teach parser to recognize ITER keyword as item-start.Graydon Hoare-0/+1
2011-01-24Remove unimplemented erorr and enable test.Rafael Ávila de Espíndola-5/+1
2011-01-24Implement a bit of type parameter matching to get a simple case working.Rafael Ávila de Espíndola-5/+32
2011-01-21Teach AST, parser, folder about iter items.Graydon Hoare-15/+35