rust/src/comp/middle
Rafael Ávila de Espíndola 41b7d6d74d One last refactoring of the import handling:
* Create an import resolving stage. Currently this involves a copy of the ast,
  we can probably revisit this once we revisit doing full copies of the ast in
  general.

* Don't repeat work. Once we resolve a import, put it on a hash table and use
  it next time we are asked for it. This solves a O(n^2) behaviour in
  degenerated cases.

* Once import resolution is done, the target of an import is stored on the
  import itself.
2011-01-18 15:43:13 -08:00
..
fold.rs One last refactoring of the import handling: 2011-01-18 15:43:13 -08:00
resolve.rs One last refactoring of the import handling: 2011-01-18 15:43:13 -08:00
trans.rs Add bzero glue and preliminary code for dynamic size/align calculations. 2011-01-18 15:38:35 -08:00
ty.rs Fix missing case in ty. 2011-01-17 17:24:47 -08:00
typeck.rs Change single-ident expr_ident to greedy/fat multi-ident expr_path, to handle the module-path/value-indexing distinction. 2011-01-13 17:42:28 -08:00