2017-03-30 08:27:27 -05:00
|
|
|
// ignore-tidy-linelength
|
|
|
|
|
2015-04-17 17:32:42 -05:00
|
|
|
macro_rules! enum_from_u32 {
|
|
|
|
($(#[$attr:meta])* pub enum $name:ident {
|
|
|
|
$($variant:ident = $e:expr,)*
|
|
|
|
}) => {
|
|
|
|
$(#[$attr])*
|
|
|
|
pub enum $name {
|
|
|
|
$($variant = $e),*
|
|
|
|
}
|
|
|
|
|
|
|
|
impl $name {
|
|
|
|
pub fn from_u32(u: u32) -> Option<$name> {
|
|
|
|
$(if u == $name::$variant as u32 {
|
|
|
|
return Some($name::$variant)
|
|
|
|
})*
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
($(#[$attr:meta])* pub enum $name:ident {
|
|
|
|
$($variant:ident,)*
|
|
|
|
}) => {
|
|
|
|
$(#[$attr])*
|
|
|
|
pub enum $name {
|
|
|
|
$($variant,)*
|
|
|
|
}
|
|
|
|
|
|
|
|
impl $name {
|
|
|
|
pub fn from_u32(u: u32) -> Option<$name> {
|
|
|
|
$(if u == $name::$variant as u32 {
|
|
|
|
return Some($name::$variant)
|
|
|
|
})*
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-23 18:35:26 -05:00
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! bug {
|
|
|
|
() => ( bug!("impossible case reached") );
|
|
|
|
($($message:tt)*) => ({
|
2018-08-04 07:51:33 -05:00
|
|
|
$crate::util::bug::bug_fmt(file!(), line!(), format_args!($($message)*))
|
2016-03-23 18:35:26 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! span_bug {
|
|
|
|
($span:expr, $($message:tt)*) => ({
|
2018-08-04 07:51:33 -05:00
|
|
|
$crate::util::bug::span_bug_fmt(file!(), line!(), $span, format_args!($($message)*))
|
2016-03-23 18:35:26 -05:00
|
|
|
})
|
|
|
|
}
|
2017-03-30 08:27:27 -05:00
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! __impl_stable_hash_field {
|
2018-06-16 09:09:42 -05:00
|
|
|
($field:ident, $ctx:expr, $hasher:expr) => ($field.hash_stable($ctx, $hasher));
|
|
|
|
($field:ident, $ctx:expr, $hasher:expr, _) => ({ let _ = $field; });
|
|
|
|
($field:ident, $ctx:expr, $hasher:expr, $delegate:expr) => ($delegate.hash_stable($ctx, $hasher));
|
2017-03-30 08:27:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! impl_stable_hash_for {
|
2018-11-06 09:00:01 -06:00
|
|
|
// Enums
|
2018-10-24 02:30:27 -05:00
|
|
|
(enum $enum_name:path {
|
|
|
|
$( $variant:ident
|
|
|
|
// this incorrectly allows specifying both tuple-like and struct-like fields, as in `Variant(a,b){c,d}`,
|
|
|
|
// when it should be only one or the other
|
2019-02-09 10:29:31 -06:00
|
|
|
$( ( $($field:ident $(-> $delegate:tt)?),* ) )?
|
|
|
|
$( { $($named_field:ident $(-> $named_delegate:tt)?),* } )?
|
|
|
|
),* $(,)?
|
2018-10-24 02:30:27 -05:00
|
|
|
}) => {
|
2018-11-06 09:00:01 -06:00
|
|
|
impl_stable_hash_for!(
|
|
|
|
impl<> for enum $enum_name [ $enum_name ] { $( $variant
|
2019-02-09 10:29:31 -06:00
|
|
|
$( ( $($field $(-> $delegate)?),* ) )?
|
|
|
|
$( { $($named_field $(-> $named_delegate)?),* } )?
|
2018-11-06 09:00:01 -06:00
|
|
|
),* }
|
|
|
|
);
|
|
|
|
};
|
|
|
|
// We want to use the enum name both in the `impl ... for $enum_name` as well as for
|
|
|
|
// importing all the variants. Unfortunately it seems we have to take the name
|
|
|
|
// twice for this purpose
|
2019-06-11 04:21:38 -05:00
|
|
|
(impl<$($T:ident),* $(,)?>
|
2018-11-06 09:00:01 -06:00
|
|
|
for enum $enum_name:path
|
|
|
|
[ $enum_path:path ]
|
|
|
|
{
|
|
|
|
$( $variant:ident
|
|
|
|
// this incorrectly allows specifying both tuple-like and struct-like fields, as in `Variant(a,b){c,d}`,
|
|
|
|
// when it should be only one or the other
|
2019-02-09 10:29:31 -06:00
|
|
|
$( ( $($field:ident $(-> $delegate:tt)?),* ) )?
|
|
|
|
$( { $($named_field:ident $(-> $named_delegate:tt)?),* } )?
|
|
|
|
),* $(,)?
|
2018-11-06 09:00:01 -06:00
|
|
|
}) => {
|
2019-06-11 04:21:38 -05:00
|
|
|
impl<$($T,)*>
|
2018-11-06 09:00:01 -06:00
|
|
|
::rustc_data_structures::stable_hasher::HashStable<$crate::ich::StableHashingContext<'a>>
|
|
|
|
for $enum_name
|
|
|
|
where $($T: ::rustc_data_structures::stable_hasher::HashStable<$crate::ich::StableHashingContext<'a>>),*
|
|
|
|
{
|
2017-03-30 08:27:27 -05:00
|
|
|
#[inline]
|
|
|
|
fn hash_stable<W: ::rustc_data_structures::stable_hasher::StableHasherResult>(&self,
|
2018-01-16 03:16:38 -06:00
|
|
|
__ctx: &mut $crate::ich::StableHashingContext<'a>,
|
2017-03-30 08:27:27 -05:00
|
|
|
__hasher: &mut ::rustc_data_structures::stable_hasher::StableHasher<W>) {
|
2018-11-06 09:00:01 -06:00
|
|
|
use $enum_path::*;
|
2017-03-30 08:27:27 -05:00
|
|
|
::std::mem::discriminant(self).hash_stable(__ctx, __hasher);
|
|
|
|
|
|
|
|
match *self {
|
|
|
|
$(
|
2019-02-09 10:29:31 -06:00
|
|
|
$variant $( ( $(ref $field),* ) )? $( { $(ref $named_field),* } )? => {
|
|
|
|
$($( __impl_stable_hash_field!($field, __ctx, __hasher $(, $delegate)?) );*)?
|
|
|
|
$($( __impl_stable_hash_field!($named_field, __ctx, __hasher $(, $named_delegate)?) );*)?
|
2017-03-30 08:27:27 -05:00
|
|
|
}
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2018-11-06 09:00:01 -06:00
|
|
|
// Structs
|
2019-02-09 10:29:31 -06:00
|
|
|
(struct $struct_name:path { $($field:ident $(-> $delegate:tt)?),* $(,)? }) => {
|
2018-11-06 09:00:01 -06:00
|
|
|
impl_stable_hash_for!(
|
2019-06-11 04:21:38 -05:00
|
|
|
impl<> for struct $struct_name { $($field $(-> $delegate)?),* }
|
2018-11-06 09:00:01 -06:00
|
|
|
);
|
|
|
|
};
|
2019-06-11 04:21:38 -05:00
|
|
|
(impl<$($T:ident),* $(,)?> for struct $struct_name:path {
|
2019-02-09 10:29:31 -06:00
|
|
|
$($field:ident $(-> $delegate:tt)?),* $(,)?
|
2018-11-06 09:00:01 -06:00
|
|
|
}) => {
|
2019-06-11 04:21:38 -05:00
|
|
|
impl<$($T,)*>
|
2018-11-06 09:00:01 -06:00
|
|
|
::rustc_data_structures::stable_hasher::HashStable<$crate::ich::StableHashingContext<'a>> for $struct_name
|
|
|
|
where $($T: ::rustc_data_structures::stable_hasher::HashStable<$crate::ich::StableHashingContext<'a>>),*
|
|
|
|
{
|
2017-03-30 08:27:27 -05:00
|
|
|
#[inline]
|
|
|
|
fn hash_stable<W: ::rustc_data_structures::stable_hasher::StableHasherResult>(&self,
|
2018-01-16 03:16:38 -06:00
|
|
|
__ctx: &mut $crate::ich::StableHashingContext<'a>,
|
2017-03-30 08:27:27 -05:00
|
|
|
__hasher: &mut ::rustc_data_structures::stable_hasher::StableHasher<W>) {
|
|
|
|
let $struct_name {
|
|
|
|
$(ref $field),*
|
|
|
|
} = *self;
|
|
|
|
|
2019-02-09 10:29:31 -06:00
|
|
|
$( __impl_stable_hash_field!($field, __ctx, __hasher $(, $delegate)?) );*
|
2017-03-30 08:27:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2018-11-06 09:00:01 -06:00
|
|
|
// Tuple structs
|
2019-02-09 10:29:31 -06:00
|
|
|
// We cannot use normal parentheses here, the parser won't allow it
|
|
|
|
(tuple_struct $struct_name:path { $($field:ident $(-> $delegate:tt)?),* $(,)? }) => {
|
2018-11-06 09:00:01 -06:00
|
|
|
impl_stable_hash_for!(
|
2019-06-11 04:21:38 -05:00
|
|
|
impl<> for tuple_struct $struct_name { $($field $(-> $delegate)?),* }
|
2018-11-06 09:00:01 -06:00
|
|
|
);
|
2017-03-30 08:27:27 -05:00
|
|
|
};
|
2019-06-11 04:21:38 -05:00
|
|
|
(impl<$($T:ident),* $(,)?>
|
2019-02-09 10:29:31 -06:00
|
|
|
for tuple_struct $struct_name:path { $($field:ident $(-> $delegate:tt)?),* $(,)? }) => {
|
2019-06-11 04:21:38 -05:00
|
|
|
impl<$($T,)*>
|
2018-10-24 02:30:27 -05:00
|
|
|
::rustc_data_structures::stable_hasher::HashStable<$crate::ich::StableHashingContext<'a>> for $struct_name
|
2018-02-09 09:39:36 -06:00
|
|
|
where $($T: ::rustc_data_structures::stable_hasher::HashStable<$crate::ich::StableHashingContext<'a>>),*
|
|
|
|
{
|
|
|
|
#[inline]
|
|
|
|
fn hash_stable<W: ::rustc_data_structures::stable_hasher::StableHasherResult>(&self,
|
|
|
|
__ctx: &mut $crate::ich::StableHashingContext<'a>,
|
|
|
|
__hasher: &mut ::rustc_data_structures::stable_hasher::StableHasher<W>) {
|
2018-11-06 09:00:01 -06:00
|
|
|
let $struct_name (
|
2018-02-09 09:39:36 -06:00
|
|
|
$(ref $field),*
|
2018-11-06 09:00:01 -06:00
|
|
|
) = *self;
|
2018-02-09 09:39:36 -06:00
|
|
|
|
2019-02-09 10:29:31 -06:00
|
|
|
$( __impl_stable_hash_field!($field, __ctx, __hasher $(, $delegate)?) );*
|
2018-02-09 09:39:36 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2017-03-30 08:27:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! impl_stable_hash_for_spanned {
|
|
|
|
($T:path) => (
|
|
|
|
|
2019-06-11 04:21:38 -05:00
|
|
|
impl HashStable<StableHashingContext<'a>> for ::syntax::source_map::Spanned<$T>
|
2017-03-30 08:27:27 -05:00
|
|
|
{
|
|
|
|
#[inline]
|
|
|
|
fn hash_stable<W: StableHasherResult>(&self,
|
2018-01-16 03:16:38 -06:00
|
|
|
hcx: &mut StableHashingContext<'a>,
|
2017-03-30 08:27:27 -05:00
|
|
|
hasher: &mut StableHasher<W>) {
|
|
|
|
self.node.hash_stable(hcx, hasher);
|
|
|
|
self.span.hash_stable(hcx, hasher);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-02-09 09:34:23 -06:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Lift and TypeFoldable macros
|
|
|
|
//
|
|
|
|
// When possible, use one of these (relatively) convenient macros to write
|
|
|
|
// the impls for you.
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! CloneLiftImpls {
|
|
|
|
(for <$tcx:lifetime> { $($ty:ty,)+ }) => {
|
|
|
|
$(
|
|
|
|
impl<$tcx> $crate::ty::Lift<$tcx> for $ty {
|
|
|
|
type Lifted = Self;
|
2019-06-11 15:47:08 -05:00
|
|
|
fn lift_to_tcx<'gcx>(&self, _: $crate::ty::TyCtxt<'gcx, $tcx>) -> Option<Self> {
|
2018-02-09 09:34:23 -06:00
|
|
|
Some(Clone::clone(self))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)+
|
|
|
|
};
|
|
|
|
|
|
|
|
($($ty:ty,)+) => {
|
|
|
|
CloneLiftImpls! {
|
|
|
|
for <'tcx> {
|
|
|
|
$($ty,)+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Used for types that are `Copy` and which **do not care arena
|
|
|
|
/// allocated data** (i.e., don't need to be folded).
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! CloneTypeFoldableImpls {
|
|
|
|
(for <$tcx:lifetime> { $($ty:ty,)+ }) => {
|
|
|
|
$(
|
|
|
|
impl<$tcx> $crate::ty::fold::TypeFoldable<$tcx> for $ty {
|
|
|
|
fn super_fold_with<'gcx: $tcx, F: $crate::ty::fold::TypeFolder<'gcx, $tcx>>(
|
|
|
|
&self,
|
|
|
|
_: &mut F
|
|
|
|
) -> $ty {
|
|
|
|
Clone::clone(self)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn super_visit_with<F: $crate::ty::fold::TypeVisitor<$tcx>>(
|
|
|
|
&self,
|
|
|
|
_: &mut F)
|
|
|
|
-> bool
|
|
|
|
{
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)+
|
|
|
|
};
|
|
|
|
|
|
|
|
($($ty:ty,)+) => {
|
|
|
|
CloneTypeFoldableImpls! {
|
|
|
|
for <'tcx> {
|
|
|
|
$($ty,)+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! CloneTypeFoldableAndLiftImpls {
|
|
|
|
($($t:tt)*) => {
|
|
|
|
CloneTypeFoldableImpls! { $($t)* }
|
|
|
|
CloneLiftImpls! { $($t)* }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! BraceStructLiftImpl {
|
|
|
|
(impl<$($p:tt),*> Lift<$tcx:tt> for $s:path {
|
|
|
|
type Lifted = $lifted:ty;
|
2019-02-24 06:59:44 -06:00
|
|
|
$($field:ident),* $(,)?
|
2018-02-09 09:34:23 -06:00
|
|
|
} $(where $($wc:tt)*)*) => {
|
|
|
|
impl<$($p),*> $crate::ty::Lift<$tcx> for $s
|
|
|
|
$(where $($wc)*)*
|
|
|
|
{
|
|
|
|
type Lifted = $lifted;
|
|
|
|
|
2019-06-11 15:47:08 -05:00
|
|
|
fn lift_to_tcx<'gcx>(&self, tcx: TyCtxt<'gcx, 'tcx>) -> Option<$lifted> {
|
2018-02-09 09:34:23 -06:00
|
|
|
$(let $field = tcx.lift(&self.$field)?;)*
|
|
|
|
Some(Self::Lifted { $($field),* })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! EnumLiftImpl {
|
|
|
|
(impl<$($p:tt),*> Lift<$tcx:tt> for $s:path {
|
|
|
|
type Lifted = $lifted:ty;
|
2018-05-08 16:15:48 -05:00
|
|
|
$($variants:tt)*
|
2018-02-09 09:34:23 -06:00
|
|
|
} $(where $($wc:tt)*)*) => {
|
|
|
|
impl<$($p),*> $crate::ty::Lift<$tcx> for $s
|
|
|
|
$(where $($wc)*)*
|
|
|
|
{
|
|
|
|
type Lifted = $lifted;
|
|
|
|
|
2019-06-11 15:47:08 -05:00
|
|
|
fn lift_to_tcx<'gcx>(&self, tcx: TyCtxt<'gcx, 'tcx>) -> Option<$lifted> {
|
2018-05-08 16:15:48 -05:00
|
|
|
EnumLiftImpl!(@Variants(self, tcx) input($($variants)*) output())
|
2018-02-09 09:34:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2018-05-08 16:15:48 -05:00
|
|
|
|
|
|
|
(@Variants($this:expr, $tcx:expr) input() output($($output:tt)*)) => {
|
|
|
|
match $this {
|
|
|
|
$($output)*
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
(@Variants($this:expr, $tcx:expr)
|
|
|
|
input( ($variant:path) ( $($variant_arg:ident),* ) , $($input:tt)*)
|
|
|
|
output( $($output:tt)*) ) => {
|
|
|
|
EnumLiftImpl!(
|
|
|
|
@Variants($this, $tcx)
|
|
|
|
input($($input)*)
|
|
|
|
output(
|
|
|
|
$variant ( $($variant_arg),* ) => {
|
|
|
|
Some($variant ( $($tcx.lift($variant_arg)?),* ))
|
|
|
|
}
|
|
|
|
$($output)*
|
|
|
|
)
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
(@Variants($this:expr, $tcx:expr)
|
|
|
|
input( ($variant:path), $($input:tt)*)
|
|
|
|
output( $($output:tt)*) ) => {
|
|
|
|
EnumLiftImpl!(
|
|
|
|
@Variants($this, $tcx)
|
|
|
|
input($($input)*)
|
|
|
|
output(
|
|
|
|
$variant => { Some($variant) }
|
|
|
|
$($output)*
|
|
|
|
)
|
|
|
|
)
|
|
|
|
};
|
2018-02-09 09:34:23 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! BraceStructTypeFoldableImpl {
|
|
|
|
(impl<$($p:tt),*> TypeFoldable<$tcx:tt> for $s:path {
|
2019-02-24 06:59:44 -06:00
|
|
|
$($field:ident),* $(,)?
|
2018-02-09 09:34:23 -06:00
|
|
|
} $(where $($wc:tt)*)*) => {
|
|
|
|
impl<$($p),*> $crate::ty::fold::TypeFoldable<$tcx> for $s
|
|
|
|
$(where $($wc)*)*
|
|
|
|
{
|
|
|
|
fn super_fold_with<'gcx: $tcx, V: $crate::ty::fold::TypeFolder<'gcx, $tcx>>(
|
|
|
|
&self,
|
|
|
|
folder: &mut V,
|
|
|
|
) -> Self {
|
|
|
|
let $s { $($field,)* } = self;
|
|
|
|
$s { $($field: $crate::ty::fold::TypeFoldable::fold_with($field, folder),)* }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn super_visit_with<V: $crate::ty::fold::TypeVisitor<$tcx>>(
|
|
|
|
&self,
|
|
|
|
visitor: &mut V,
|
|
|
|
) -> bool {
|
|
|
|
let $s { $($field,)* } = self;
|
|
|
|
false $(|| $crate::ty::fold::TypeFoldable::visit_with($field, visitor))*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! TupleStructTypeFoldableImpl {
|
|
|
|
(impl<$($p:tt),*> TypeFoldable<$tcx:tt> for $s:path {
|
2019-02-24 06:59:44 -06:00
|
|
|
$($field:ident),* $(,)?
|
2018-02-09 09:34:23 -06:00
|
|
|
} $(where $($wc:tt)*)*) => {
|
|
|
|
impl<$($p),*> $crate::ty::fold::TypeFoldable<$tcx> for $s
|
|
|
|
$(where $($wc)*)*
|
|
|
|
{
|
|
|
|
fn super_fold_with<'gcx: $tcx, V: $crate::ty::fold::TypeFolder<'gcx, $tcx>>(
|
|
|
|
&self,
|
|
|
|
folder: &mut V,
|
|
|
|
) -> Self {
|
|
|
|
let $s($($field,)*)= self;
|
|
|
|
$s($($crate::ty::fold::TypeFoldable::fold_with($field, folder),)*)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn super_visit_with<V: $crate::ty::fold::TypeVisitor<$tcx>>(
|
|
|
|
&self,
|
|
|
|
visitor: &mut V,
|
|
|
|
) -> bool {
|
|
|
|
let $s($($field,)*) = self;
|
|
|
|
false $(|| $crate::ty::fold::TypeFoldable::visit_with($field, visitor))*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! EnumTypeFoldableImpl {
|
|
|
|
(impl<$($p:tt),*> TypeFoldable<$tcx:tt> for $s:path {
|
|
|
|
$($variants:tt)*
|
|
|
|
} $(where $($wc:tt)*)*) => {
|
|
|
|
impl<$($p),*> $crate::ty::fold::TypeFoldable<$tcx> for $s
|
|
|
|
$(where $($wc)*)*
|
|
|
|
{
|
|
|
|
fn super_fold_with<'gcx: $tcx, V: $crate::ty::fold::TypeFolder<'gcx, $tcx>>(
|
|
|
|
&self,
|
|
|
|
folder: &mut V,
|
|
|
|
) -> Self {
|
|
|
|
EnumTypeFoldableImpl!(@FoldVariants(self, folder) input($($variants)*) output())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn super_visit_with<V: $crate::ty::fold::TypeVisitor<$tcx>>(
|
|
|
|
&self,
|
|
|
|
visitor: &mut V,
|
|
|
|
) -> bool {
|
|
|
|
EnumTypeFoldableImpl!(@VisitVariants(self, visitor) input($($variants)*) output())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
(@FoldVariants($this:expr, $folder:expr) input() output($($output:tt)*)) => {
|
|
|
|
match $this {
|
|
|
|
$($output)*
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
(@FoldVariants($this:expr, $folder:expr)
|
|
|
|
input( ($variant:path) ( $($variant_arg:ident),* ) , $($input:tt)*)
|
|
|
|
output( $($output:tt)*) ) => {
|
|
|
|
EnumTypeFoldableImpl!(
|
|
|
|
@FoldVariants($this, $folder)
|
|
|
|
input($($input)*)
|
|
|
|
output(
|
|
|
|
$variant ( $($variant_arg),* ) => {
|
|
|
|
$variant (
|
|
|
|
$($crate::ty::fold::TypeFoldable::fold_with($variant_arg, $folder)),*
|
|
|
|
)
|
|
|
|
}
|
|
|
|
$($output)*
|
|
|
|
)
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
(@FoldVariants($this:expr, $folder:expr)
|
2019-02-24 06:59:44 -06:00
|
|
|
input( ($variant:path) { $($variant_arg:ident),* $(,)? } , $($input:tt)*)
|
2018-02-09 09:34:23 -06:00
|
|
|
output( $($output:tt)*) ) => {
|
|
|
|
EnumTypeFoldableImpl!(
|
|
|
|
@FoldVariants($this, $folder)
|
|
|
|
input($($input)*)
|
|
|
|
output(
|
|
|
|
$variant { $($variant_arg),* } => {
|
|
|
|
$variant {
|
|
|
|
$($variant_arg: $crate::ty::fold::TypeFoldable::fold_with(
|
|
|
|
$variant_arg, $folder
|
|
|
|
)),* }
|
|
|
|
}
|
|
|
|
$($output)*
|
|
|
|
)
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
(@FoldVariants($this:expr, $folder:expr)
|
|
|
|
input( ($variant:path), $($input:tt)*)
|
|
|
|
output( $($output:tt)*) ) => {
|
|
|
|
EnumTypeFoldableImpl!(
|
|
|
|
@FoldVariants($this, $folder)
|
|
|
|
input($($input)*)
|
|
|
|
output(
|
|
|
|
$variant => { $variant }
|
|
|
|
$($output)*
|
|
|
|
)
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
(@VisitVariants($this:expr, $visitor:expr) input() output($($output:tt)*)) => {
|
|
|
|
match $this {
|
|
|
|
$($output)*
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
(@VisitVariants($this:expr, $visitor:expr)
|
|
|
|
input( ($variant:path) ( $($variant_arg:ident),* ) , $($input:tt)*)
|
|
|
|
output( $($output:tt)*) ) => {
|
|
|
|
EnumTypeFoldableImpl!(
|
|
|
|
@VisitVariants($this, $visitor)
|
|
|
|
input($($input)*)
|
|
|
|
output(
|
|
|
|
$variant ( $($variant_arg),* ) => {
|
|
|
|
false $(|| $crate::ty::fold::TypeFoldable::visit_with(
|
|
|
|
$variant_arg, $visitor
|
|
|
|
))*
|
|
|
|
}
|
|
|
|
$($output)*
|
|
|
|
)
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
(@VisitVariants($this:expr, $visitor:expr)
|
2019-02-24 06:59:44 -06:00
|
|
|
input( ($variant:path) { $($variant_arg:ident),* $(,)? } , $($input:tt)*)
|
2018-02-09 09:34:23 -06:00
|
|
|
output( $($output:tt)*) ) => {
|
|
|
|
EnumTypeFoldableImpl!(
|
|
|
|
@VisitVariants($this, $visitor)
|
|
|
|
input($($input)*)
|
|
|
|
output(
|
|
|
|
$variant { $($variant_arg),* } => {
|
|
|
|
false $(|| $crate::ty::fold::TypeFoldable::visit_with(
|
|
|
|
$variant_arg, $visitor
|
|
|
|
))*
|
|
|
|
}
|
|
|
|
$($output)*
|
|
|
|
)
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
(@VisitVariants($this:expr, $visitor:expr)
|
|
|
|
input( ($variant:path), $($input:tt)*)
|
|
|
|
output( $($output:tt)*) ) => {
|
|
|
|
EnumTypeFoldableImpl!(
|
|
|
|
@VisitVariants($this, $visitor)
|
|
|
|
input($($input)*)
|
|
|
|
output(
|
|
|
|
$variant => { false }
|
|
|
|
$($output)*
|
|
|
|
)
|
|
|
|
)
|
|
|
|
};
|
|
|
|
}
|