| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-01-14 | Pass tydescs to parametric fns, along with (dummy, presently) retptr when ↵ | Graydon Hoare | -66/+82 | |
| needed. Can call simple parametric fn now. | ||||
| 2011-01-14 | Fix the import handling in "complex" cases. When looking a.b.c and 'a' is a | Rafael Ávila de Espíndola | -5/+22 | |
| module, we should look for 'b' *just* in the module 'a' and then continue resolving b.c in the environment created by updating *with* a. Still not 100% correct, but getting there. | ||||
| 2011-01-14 | Expand generic info in lval_result. | Graydon Hoare | -12/+17 | |
| 2011-01-14 | Trim long lines. | Graydon Hoare | -2/+2 | |
| 2011-01-14 | Pass tydescs to parametric fns. | Graydon Hoare | -6/+33 | |
| 2011-01-14 | Make lookup non recursive and instead move the recursion just to | Rafael Ávila de Espíndola | -60/+88 | |
| find_final_def. Use the fact that the recursion is in a simpler function to detected import loops and exit. | ||||
| 2011-01-13 | Change single-ident expr_ident to greedy/fat multi-ident expr_path, to ↵ | Graydon Hoare | -98/+170 | |
| handle the module-path/value-indexing distinction. | ||||
| 2011-01-12 | Produce better errors for invalid imports. | Rafael Ávila de Espíndola | -0/+6 | |
| 2011-01-12 | Call find_final_def directly in fold_view_item_import. It is both cleaner and | Rafael Ávila de Espíndola | -1/+1 | |
| faster. | ||||
| 2011-01-12 | Change mod_index_entry to point directly to items and view_items. | Rafael Ávila de Espíndola | -58/+66 | |
| 2011-01-12 | Figure out what tydescs we need to pass when translating parametric function ↵ | Patrick Walton | -4/+57 | |
| calls | ||||
| 2011-01-11 | Fix another import case we got wrong: The local environment should not | Rafael Ávila de Espíndola | -27/+47 | |
| interfere with the import statements. | ||||
| 2011-01-11 | Fix two invalid import cases we were not detecting: | Rafael Ávila de Espíndola | -12/+29 | |
| * If an import was unused we would never print any errors for it. * We would keep the existing environment in scope when descending 'foo.bar' and would find 'bar' in the global environment if there was no 'bar' in 'foo'. | ||||
| 2011-01-10 | Sketch support for reading multi-file crates in rustc. Add test, not yet ↵ | Graydon Hoare | -32/+138 | |
| working. | ||||
| 2011-01-07 | Drop closures. Un-XFAIL bind-interior.rs. | Graydon Hoare | -7/+54 | |
| 2011-01-07 | Add sufficient import support to compile some simple single-crate programs. | Rafael Ávila de Espíndola | -37/+115 | |
| This is likely not the final solution. It does repetitive work and doesn't produce errors for invalid but unused imports. In any case, I think it is a useful step. | ||||
| 2011-01-07 | Synthesize closure thunks, and pass closure pointer into fn calls. | Graydon Hoare | -30/+170 | |
| 2011-01-06 | Whitespace cleanup, and copy target into closure. | Graydon Hoare | -7/+10 | |
| 2011-01-06 | Add the boilerplate for folding view items. | Rafael Ávila de Espíndola | -1/+65 | |
| 2011-01-05 | Sketch closure-forming logic for nontrivial bindings. | Graydon Hoare | -4/+79 | |
| 2011-01-05 | Translate trivial bindings. Un-XFAIL bind-trivial.rs. | Graydon Hoare | -8/+20 | |
| 2011-01-05 | Use uniform pair representation of functions everywhere, including static ↵ | Graydon Hoare | -38/+132 | |
| functions. | ||||
| 2011-01-04 | rustc: Allow the type unification handler to handle both expected and actual ↵ | Patrick Walton | -4/+20 | |
| param types | ||||
| 2011-01-04 | Correct function pointer type in closure. | Graydon Hoare | -2/+2 | |
| 2011-01-04 | Merge remote branch 'espindola/import' | Graydon Hoare | -5/+9 | |
| 2011-01-04 | Add names from imports to the namespace. | Rafael Ávila de Espíndola | -5/+9 | |
| 2011-01-04 | rustc: Add an item type accessor | Patrick Walton | -0/+38 | |
| 2011-01-04 | Add support for looking up a name introduced by a 'use'. | Rafael Ávila de Espíndola | -11/+38 | |
| With this we go from "error: unresolved name: foo" to "unimplemented definition variant for: foo" in use foo; fn main(vec[str] args) { foo.bar(); } | ||||
| 2011-01-04 | Refactor the view_item code so that it is similar to the code used for | Rafael Ávila de Espíndola | -30/+40 | |
| parsing regular items. | ||||
| 2011-01-04 | Rename use_or_import to view_item. | Rafael Ávila de Espíndola | -8/+8 | |
| 2011-01-03 | Begin sketching translation of bind_expr. No captures yet, also crashy. | Graydon Hoare | -1/+40 | |
| 2011-01-03 | Split driver between parsing source files and crate files, by extension. Add ↵ | Graydon Hoare | -2/+21 | |
| dummy function for crate files. | ||||
| 2011-01-03 | Typecheck expr_bind. | Graydon Hoare | -13/+57 | |
| 2011-01-03 | Add type accessors for fn types. | Graydon Hoare | -0/+24 | |
| 2011-01-03 | Fix fold bug on expr_bind. | Graydon Hoare | -0/+3 | |
| 2011-01-03 | Actually return the correct node from the parser. | Graydon Hoare | -2/+1 | |
| 2011-01-03 | Remove missed debug chatter. | Graydon Hoare | -1/+0 | |
| 2010-12-31 | Add restricted-parse mode, and parse bind expressions. | Graydon Hoare | -10/+68 | |
| 2010-12-31 | Translate local item decls. | Graydon Hoare | -0/+3 | |
| 2010-12-31 | Update method-fold env with fake item_fn representing the method. | Graydon Hoare | -1/+12 | |
| 2010-12-31 | Change resolve errs to span_errs. | Graydon Hoare | -4/+4 | |
| 2010-12-31 | Parse local item decls. | Graydon Hoare | -6/+36 | |
| 2010-12-31 | Index tag and obj items in decl stmts. | Graydon Hoare | -0/+6 | |
| 2010-12-31 | Free objects by indirectly dropping fields via enclosed tydesc first. | Graydon Hoare | -2/+49 | |
| 2010-12-31 | Replace arg Load with load_non_structural in obj ctor. | Graydon Hoare | -1/+1 | |
| 2010-12-31 | Teach ty.unify about ty_obj. | Graydon Hoare | -0/+83 | |
| 2010-12-31 | Move unify_fn logic out-of-line. | Graydon Hoare | -59/+72 | |
| 2010-12-30 | Teach typeck.ast_ty_to_ty about ty_obj. | Graydon Hoare | -3/+13 | |
| 2010-12-30 | Teach fold about ty_obj. | Graydon Hoare | -0/+24 | |
| 2010-12-30 | Teach trans to access object fields. | Graydon Hoare | -14/+100 | |
