@@ -650,6 +650,20 @@ impl Span {
650
650
self . with_ctxt ( data. apply_mark ( SyntaxContext :: root ( ) , expn_id, transparency) )
651
651
} )
652
652
}
653
+
654
+ /// Reuses the span but adds information like the kind of the desugaring and features that are
655
+ /// allowed inside this span.
656
+ pub fn mark_with_reason (
657
+ self ,
658
+ allow_internal_unstable : Option < Lrc < [ Symbol ] > > ,
659
+ reason : DesugaringKind ,
660
+ edition : Edition ,
661
+ ) -> Span {
662
+ self . fresh_expansion ( ExpnData {
663
+ allow_internal_unstable,
664
+ ..ExpnData :: default ( ExpnKind :: Desugaring ( reason) , self , edition, None )
665
+ } )
666
+ }
653
667
}
654
668
655
669
/// A subset of properties from both macro definition and macro call available through global data.
@@ -699,21 +713,47 @@ pub struct ExpnData {
699
713
/// created locally - when our serialized metadata is decoded,
700
714
/// foreign `ExpnId`s will have their `ExpnData` looked up
701
715
/// from the crate specified by `Crate
702
- pub krate : CrateNum ,
716
+ krate : CrateNum ,
703
717
/// The raw that this `ExpnData` had in its original crate.
704
718
/// An `ExpnData` can be created before being assigned an `ExpnId`,
705
719
/// so this might be `None` until `set_expn_data` is called
706
720
// This is used only for serialization/deserialization purposes:
707
721
// two `ExpnData`s that differ only in their `orig_id` should
708
722
// be considered equivalent.
709
723
#[ stable_hasher( ignore) ]
710
- pub orig_id : Option < u32 > ,
724
+ orig_id : Option < u32 > ,
711
725
}
712
726
713
727
// This would require special handling of `orig_id` and `parent`
714
728
impl !PartialEq for ExpnData { }
715
729
716
730
impl ExpnData {
731
+ pub fn new (
732
+ kind : ExpnKind ,
733
+ parent : ExpnId ,
734
+ call_site : Span ,
735
+ def_site : Span ,
736
+ allow_internal_unstable : Option < Lrc < [ Symbol ] > > ,
737
+ allow_internal_unsafe : bool ,
738
+ local_inner_macros : bool ,
739
+ edition : Edition ,
740
+ macro_def_id : Option < DefId > ,
741
+ ) -> ExpnData {
742
+ ExpnData {
743
+ kind,
744
+ parent,
745
+ call_site,
746
+ def_site,
747
+ allow_internal_unstable,
748
+ allow_internal_unsafe,
749
+ local_inner_macros,
750
+ edition,
751
+ macro_def_id,
752
+ krate : LOCAL_CRATE ,
753
+ orig_id : None ,
754
+ }
755
+ }
756
+
717
757
/// Constructs expansion data with default properties.
718
758
pub fn default (
719
759
kind : ExpnKind ,
0 commit comments