1#[macro_export] 2macro_rules! path { 3 ( 4 $( . $field:expr )+ 5 ) => { 6 [ $( $field, )+ ].into_iter().collect::<$crate::stmt::Path>() 7 }; 8}