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