1
Fork 0

Handle built-in typenames in the resolve pass, rather than in parser

Closes #1728

Comments out a section of debuginfo.rs. This code was already broken
(only being called when --xg was passed, and only working on trivial
programs).
This commit is contained in:
Marijn Haverbeke 2012-02-06 15:29:56 +01:00
parent 8673c4f195
commit a08e589390
10 changed files with 188 additions and 168 deletions

View file

@ -31,6 +31,7 @@ fn def_id_of_def(d: def) -> def_id {
def_native_mod(id) | def_const(id) | def_arg(id, _) | def_local(id, _) |
def_variant(_, id) | def_ty(id) | def_ty_param(id, _) |
def_binding(id) | def_use(id) | def_upvar(id, _, _) { id }
def_prim_ty(_) { fail; }
}
}