Remove ty_native_fn

It was being used as a clumsy synonym of ty_fn.
This commit is contained in:
Marijn Haverbeke
2012-01-26 10:29:47 +01:00
parent 566a4be1f8
commit ec4d05de3b
17 changed files with 38 additions and 128 deletions

View File

@@ -29,7 +29,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_native_ty(id) |
def_native_fn(id, _) | def_upvar(id, _, _) { id }
def_upvar(id, _, _) { id }
}
}