@@ -181,6 +181,7 @@ impl HygieneData {
181
181
DUMMY_SP ,
182
182
edition,
183
183
Some ( DefId :: local ( CRATE_DEF_INDEX ) ) ,
184
+ None ,
184
185
) ;
185
186
root_data. orig_id = Some ( 0 ) ;
186
187
@@ -687,7 +688,7 @@ impl Span {
687
688
) -> Span {
688
689
self . fresh_expansion ( ExpnData {
689
690
allow_internal_unstable,
690
- ..ExpnData :: default ( ExpnKind :: Desugaring ( reason) , self , edition, None )
691
+ ..ExpnData :: default ( ExpnKind :: Desugaring ( reason) , self , edition, None , None )
691
692
} )
692
693
}
693
694
}
@@ -734,6 +735,8 @@ pub struct ExpnData {
734
735
/// The `DefId` of the macro being invoked,
735
736
/// if this `ExpnData` corresponds to a macro invocation
736
737
pub macro_def_id : Option < DefId > ,
738
+ /// The normal module (`mod`) in which the expanded macro was defined.
739
+ pub parent_module : Option < DefId > ,
737
740
/// The crate that originally created this `ExpnData`. During
738
741
/// metadata serialization, we only encode `ExpnData`s that were
739
742
/// created locally - when our serialized metadata is decoded,
@@ -777,6 +780,7 @@ impl ExpnData {
777
780
local_inner_macros : bool ,
778
781
edition : Edition ,
779
782
macro_def_id : Option < DefId > ,
783
+ parent_module : Option < DefId > ,
780
784
) -> ExpnData {
781
785
ExpnData {
782
786
kind,
@@ -788,6 +792,7 @@ impl ExpnData {
788
792
local_inner_macros,
789
793
edition,
790
794
macro_def_id,
795
+ parent_module,
791
796
krate : LOCAL_CRATE ,
792
797
orig_id : None ,
793
798
disambiguator : 0 ,
@@ -800,6 +805,7 @@ impl ExpnData {
800
805
call_site : Span ,
801
806
edition : Edition ,
802
807
macro_def_id : Option < DefId > ,
808
+ parent_module : Option < DefId > ,
803
809
) -> ExpnData {
804
810
ExpnData {
805
811
kind,
@@ -811,6 +817,7 @@ impl ExpnData {
811
817
local_inner_macros : false ,
812
818
edition,
813
819
macro_def_id,
820
+ parent_module,
814
821
krate : LOCAL_CRATE ,
815
822
orig_id : None ,
816
823
disambiguator : 0 ,
@@ -823,10 +830,11 @@ impl ExpnData {
823
830
edition : Edition ,
824
831
allow_internal_unstable : Lrc < [ Symbol ] > ,
825
832
macro_def_id : Option < DefId > ,
833
+ parent_module : Option < DefId > ,
826
834
) -> ExpnData {
827
835
ExpnData {
828
836
allow_internal_unstable : Some ( allow_internal_unstable) ,
829
- ..ExpnData :: default ( kind, call_site, edition, macro_def_id)
837
+ ..ExpnData :: default ( kind, call_site, edition, macro_def_id, parent_module )
830
838
}
831
839
}
832
840
0 commit comments