Lines Matching refs:helper
96 (@helper $root:ident, [] ..=) => {
99 (@helper $root:ident, [] ..) => {
103 (@helper $root:ident, $parent:path, [] ..) => {{
107 (@helper $root:ident, $parent:path, [] ..= $end:tt) => {{
111 (@helper $root:ident, $parent:path, [] .. $end:tt) => {{
115 (@helper $root:ident, $parent:path, # $begin:tt [] ..= $end:tt) => {{
120 (@helper $root:ident, $parent:path, # $begin:tt [] .. $end:tt) => {{
125 (@helper $root:ident, $parent:path, # $begin:tt [] ..) => {{
129 (@helper $root:ident, $parent:path, # $begin:tt [] ..=) => {{
134 (@helper $root:ident, $parent:path, # $field:tt []) => {{
139 (@helper $root:ident, $parent:path, $(# $begin:tt)+ [] $tt:tt $($rest:tt)*) => {{
140 span_of!(@helper $root, $parent, $(#$begin)* #$tt [] $($rest)*)
142 (@helper $root:ident, $parent:path, [] $tt:tt $($rest:tt)*) => {{
143 span_of!(@helper $root, $parent, #$tt [] $($rest)*)
151 let (begin, end) = span_of!(@helper root, $sty, [] $($exp)*);