@@ -66,10 +66,10 @@ pub struct SyntaxContextData {
66
66
outer_expn : ExpnId ,
67
67
outer_transparency : Transparency ,
68
68
parent : SyntaxContext ,
69
- /// This context, but with all transparent and semi-transparent expansions filtered away.
69
+ /// This context, but with all transparent and semi-opaque expansions filtered away.
70
70
opaque : SyntaxContext ,
71
71
/// This context, but with all transparent expansions filtered away.
72
- opaque_and_semitransparent : SyntaxContext ,
72
+ opaque_and_semiopaque : SyntaxContext ,
73
73
/// Name of the crate to which `$crate` with this context would resolve.
74
74
dollar_crate_name : Symbol ,
75
75
}
@@ -81,7 +81,7 @@ impl SyntaxContextData {
81
81
outer_transparency : Transparency :: Opaque ,
82
82
parent : SyntaxContext :: root ( ) ,
83
83
opaque : SyntaxContext :: root ( ) ,
84
- opaque_and_semitransparent : SyntaxContext :: root ( ) ,
84
+ opaque_and_semiopaque : SyntaxContext :: root ( ) ,
85
85
dollar_crate_name : kw:: DollarCrate ,
86
86
}
87
87
}
@@ -192,21 +192,21 @@ pub enum Transparency {
192
192
/// Identifier produced by a transparent expansion is always resolved at call-site.
193
193
/// Call-site spans in procedural macros, hygiene opt-out in `macro` should use this.
194
194
Transparent ,
195
- /// Identifier produced by a semi-transparent expansion may be resolved
195
+ /// Identifier produced by a semi-opaque expansion may be resolved
196
196
/// either at call-site or at definition-site.
197
197
/// If it's a local variable, label or `$crate` then it's resolved at def-site.
198
198
/// Otherwise it's resolved at call-site.
199
199
/// `macro_rules` macros behave like this, built-in macros currently behave like this too,
200
200
/// but that's an implementation detail.
201
- SemiTransparent ,
201
+ SemiOpaque ,
202
202
/// Identifier produced by an opaque expansion is always resolved at definition-site.
203
203
/// Def-site spans in procedural macros, identifiers from `macro` by default use this.
204
204
Opaque ,
205
205
}
206
206
207
207
impl Transparency {
208
208
pub fn fallback ( macro_rules : bool ) -> Self {
209
- if macro_rules { Transparency :: SemiTransparent } else { Transparency :: Opaque }
209
+ if macro_rules { Transparency :: SemiOpaque } else { Transparency :: Opaque }
210
210
}
211
211
}
212
212
@@ -454,7 +454,7 @@ impl HygieneData {
454
454
455
455
fn normalize_to_macro_rules ( & self , ctxt : SyntaxContext ) -> SyntaxContext {
456
456
debug_assert ! ( !self . syntax_context_data[ ctxt. 0 as usize ] . is_decode_placeholder( ) ) ;
457
- self . syntax_context_data [ ctxt. 0 as usize ] . opaque_and_semitransparent
457
+ self . syntax_context_data [ ctxt. 0 as usize ] . opaque_and_semiopaque
458
458
}
459
459
460
460
fn outer_expn ( & self , ctxt : SyntaxContext ) -> ExpnId {
@@ -547,7 +547,7 @@ impl HygieneData {
547
547
}
548
548
549
549
let call_site_ctxt = self . expn_data ( expn_id) . call_site . ctxt ( ) ;
550
- let mut call_site_ctxt = if transparency == Transparency :: SemiTransparent {
550
+ let mut call_site_ctxt = if transparency == Transparency :: SemiOpaque {
551
551
self . normalize_to_macros_2_0 ( call_site_ctxt)
552
552
} else {
553
553
self . normalize_to_macro_rules ( call_site_ctxt)
@@ -581,8 +581,7 @@ impl HygieneData {
581
581
let syntax_context_data = & mut self . syntax_context_data ;
582
582
debug_assert ! ( !syntax_context_data[ ctxt. 0 as usize ] . is_decode_placeholder( ) ) ;
583
583
let mut opaque = syntax_context_data[ ctxt. 0 as usize ] . opaque ;
584
- let mut opaque_and_semitransparent =
585
- syntax_context_data[ ctxt. 0 as usize ] . opaque_and_semitransparent ;
584
+ let mut opaque_and_semiopaque = syntax_context_data[ ctxt. 0 as usize ] . opaque_and_semiopaque ;
586
585
587
586
if transparency >= Transparency :: Opaque {
588
587
let parent = opaque;
@@ -596,30 +595,30 @@ impl HygieneData {
596
595
outer_transparency : transparency,
597
596
parent,
598
597
opaque : new_opaque,
599
- opaque_and_semitransparent : new_opaque,
598
+ opaque_and_semiopaque : new_opaque,
600
599
dollar_crate_name : kw:: DollarCrate ,
601
600
} ) ;
602
601
new_opaque
603
602
} ) ;
604
603
}
605
604
606
- if transparency >= Transparency :: SemiTransparent {
607
- let parent = opaque_and_semitransparent ;
608
- opaque_and_semitransparent = * self
605
+ if transparency >= Transparency :: SemiOpaque {
606
+ let parent = opaque_and_semiopaque ;
607
+ opaque_and_semiopaque = * self
609
608
. syntax_context_map
610
609
. entry ( ( parent, expn_id, transparency) )
611
610
. or_insert_with ( || {
612
- let new_opaque_and_semitransparent =
611
+ let new_opaque_and_semiopaque =
613
612
SyntaxContext :: from_usize ( syntax_context_data. len ( ) ) ;
614
613
syntax_context_data. push ( SyntaxContextData {
615
614
outer_expn : expn_id,
616
615
outer_transparency : transparency,
617
616
parent,
618
617
opaque,
619
- opaque_and_semitransparent : new_opaque_and_semitransparent ,
618
+ opaque_and_semiopaque : new_opaque_and_semiopaque ,
620
619
dollar_crate_name : kw:: DollarCrate ,
621
620
} ) ;
622
- new_opaque_and_semitransparent
621
+ new_opaque_and_semiopaque
623
622
} ) ;
624
623
}
625
624
@@ -630,7 +629,7 @@ impl HygieneData {
630
629
outer_transparency : transparency,
631
630
parent,
632
631
opaque,
633
- opaque_and_semitransparent ,
632
+ opaque_and_semiopaque ,
634
633
dollar_crate_name : kw:: DollarCrate ,
635
634
} ) ;
636
635
SyntaxContext :: from_usize ( syntax_context_data. len ( ) - 1 )
0 commit comments