Lines Matching refs:span
133 ([$span:expr, $($fmt:tt)*]) => {
136 $span,
141 ([$old:expr, $($fmt:tt)*] span = $span:expr) => {
142 $crate::format_ident_impl!([$old, $($fmt)*] span = $span,)
144 ([$old:expr, $($fmt:tt)*] span = $span:expr, $($rest:tt)*) => {
146 $crate::__private::Option::Some::<$crate::__private::Span>($span),
152 ([$span:expr, $($fmt:tt)*] $name:ident = $arg:expr) => {
153 $crate::format_ident_impl!([$span, $($fmt)*] $name = $arg,)
155 ([$span:expr, $($fmt:tt)*] $name:ident = $arg:expr, $($rest:tt)*) => {
157 … arg => $crate::format_ident_impl!([$span.or(arg.span()), $($fmt)*, $name = arg] $($rest)*),
162 ([$span:expr, $($fmt:tt)*] $arg:expr) => {
163 $crate::format_ident_impl!([$span, $($fmt)*] $arg,)
165 ([$span:expr, $($fmt:tt)*] $arg:expr, $($rest:tt)*) => {
167 arg => $crate::format_ident_impl!([$span.or(arg.span()), $($fmt)*, arg] $($rest)*),