Remove remnants of implicit self

This commit is contained in:
Niko Matsakis
2013-08-27 16:36:42 -04:00
parent 35a4177550
commit 8c09865b66
14 changed files with 15 additions and 37 deletions

View File

@@ -64,7 +64,7 @@ pub fn def_id_of_def(d: def) -> def_id {
def_use(id) | def_struct(id) | def_trait(id) | def_method(id, _) => {
id
}
def_arg(id, _) | def_local(id, _) | def_self(id, _) | def_self_ty(id)
def_arg(id, _) | def_local(id, _) | def_self(id) | def_self_ty(id)
| def_upvar(id, _, _, _) | def_binding(id, _) | def_region(id)
| def_typaram_binder(id) | def_label(id) => {
local_def(id)