@@ -400,6 +400,8 @@ define_tables! {
400400 // individually instead of `DefId`s.
401401 module_children_reexports: Table <DefIndex , LazyArray <ModChild >>,
402402 cross_crate_inlinable: Table <DefIndex , bool >,
403+ asyncness: Table <DefIndex , ty:: Asyncness >,
404+ constness: Table <DefIndex , hir:: Constness >,
403405
404406- optional:
405407 attributes: Table <DefIndex , LazyArray <hir:: Attribute >>,
@@ -433,15 +435,13 @@ define_tables! {
433435 promoted_mir: Table <DefIndex , LazyValue <IndexVec <mir:: Promoted , mir:: Body <' static >>>>,
434436 thir_abstract_const: Table <DefIndex , LazyValue <ty:: EarlyBinder <' static , ty:: Const <' static >>>>,
435437 impl_parent: Table <DefIndex , RawDefId >,
436- constness: Table <DefIndex , hir:: Constness >,
437438 const_conditions: Table <DefIndex , LazyValue <ty:: ConstConditions <' static >>>,
438439 defaultness: Table <DefIndex , hir:: Defaultness >,
439440 // FIXME(eddyb) perhaps compute this on the fly if cheap enough?
440441 coerce_unsized_info: Table <DefIndex , LazyValue <ty:: adjustment:: CoerceUnsizedInfo >>,
441442 mir_const_qualif: Table <DefIndex , LazyValue <mir:: ConstQualifs >>,
442443 rendered_const: Table <DefIndex , LazyValue <String >>,
443444 rendered_precise_capturing_args: Table <DefIndex , LazyArray <PreciseCapturingArgKind <Symbol , Symbol >>>,
444- asyncness: Table <DefIndex , ty:: Asyncness >,
445445 fn_arg_idents: Table <DefIndex , LazyArray <Option <Ident >>>,
446446 coroutine_kind: Table <DefIndex , hir:: CoroutineKind >,
447447 coroutine_for_closure: Table <DefIndex , RawDefId >,
0 commit comments