]> git.lizzy.rs Git - rust.git/blob - src/libsyntax_pos/hygiene.rs
Rollup merge of #61420 - felixrabe:patch-2, r=dtolnay
[rust.git] / src / libsyntax_pos / hygiene.rs
1 //! Machinery for hygienic macros, inspired by the `MTWT[1]` paper.
2 //!
3 //! `[1]` Matthew Flatt, Ryan Culpepper, David Darais, and Robert Bruce Findler. 2012.
4 //! *Macros that work together: Compile-time bindings, partial expansion,
5 //! and definition contexts*. J. Funct. Program. 22, 2 (March 2012), 181-216.
6 //! DOI=10.1017/S0956796812000093 <https://doi.org/10.1017/S0956796812000093>
7
8 use crate::GLOBALS;
9 use crate::Span;
10 use crate::edition::Edition;
11 use crate::symbol::{kw, Symbol};
12
13 use serialize::{Encodable, Decodable, Encoder, Decoder};
14 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
15 use rustc_data_structures::sync::Lrc;
16 use std::{fmt, mem};
17
18 /// A SyntaxContext represents a chain of macro expansions (represented by marks).
19 #[derive(Clone, Copy, PartialEq, Eq, Default, PartialOrd, Ord, Hash)]
20 pub struct SyntaxContext(u32);
21
22 #[derive(Copy, Clone, Debug)]
23 struct SyntaxContextData {
24     outer_mark: Mark,
25     transparency: Transparency,
26     prev_ctxt: SyntaxContext,
27     /// This context, but with all transparent and semi-transparent marks filtered away.
28     opaque: SyntaxContext,
29     /// This context, but with all transparent marks filtered away.
30     opaque_and_semitransparent: SyntaxContext,
31     /// Name of the crate to which `$crate` with this context would resolve.
32     dollar_crate_name: Symbol,
33 }
34
35 /// A mark is a unique ID associated with a macro expansion.
36 #[derive(Copy, Clone, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
37 pub struct Mark(u32);
38
39 #[derive(Clone, Debug)]
40 struct MarkData {
41     parent: Mark,
42     default_transparency: Transparency,
43     expn_info: Option<ExpnInfo>,
44 }
45
46 /// A property of a macro expansion that determines how identifiers
47 /// produced by that expansion are resolved.
48 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Hash, Debug)]
49 pub enum Transparency {
50     /// Identifier produced by a transparent expansion is always resolved at call-site.
51     /// Call-site spans in procedural macros, hygiene opt-out in `macro` should use this.
52     Transparent,
53     /// Identifier produced by a semi-transparent expansion may be resolved
54     /// either at call-site or at definition-site.
55     /// If it's a local variable, label or `$crate` then it's resolved at def-site.
56     /// Otherwise it's resolved at call-site.
57     /// `macro_rules` macros behave like this, built-in macros currently behave like this too,
58     /// but that's an implementation detail.
59     SemiTransparent,
60     /// Identifier produced by an opaque expansion is always resolved at definition-site.
61     /// Def-site spans in procedural macros, identifiers from `macro` by default use this.
62     Opaque,
63 }
64
65 impl Mark {
66     pub fn fresh(parent: Mark) -> Self {
67         HygieneData::with(|data| {
68             data.marks.push(MarkData {
69                 parent,
70                 // By default expansions behave like `macro_rules`.
71                 default_transparency: Transparency::SemiTransparent,
72                 expn_info: None,
73             });
74             Mark(data.marks.len() as u32 - 1)
75         })
76     }
77
78     /// The mark of the theoretical expansion that generates freshly parsed, unexpanded AST.
79     #[inline]
80     pub fn root() -> Self {
81         Mark(0)
82     }
83
84     #[inline]
85     pub fn as_u32(self) -> u32 {
86         self.0
87     }
88
89     #[inline]
90     pub fn from_u32(raw: u32) -> Mark {
91         Mark(raw)
92     }
93
94     #[inline]
95     pub fn parent(self) -> Mark {
96         HygieneData::with(|data| data.marks[self.0 as usize].parent)
97     }
98
99     #[inline]
100     pub fn expn_info(self) -> Option<ExpnInfo> {
101         HygieneData::with(|data| data.marks[self.0 as usize].expn_info.clone())
102     }
103
104     #[inline]
105     pub fn set_expn_info(self, info: ExpnInfo) {
106         HygieneData::with(|data| data.marks[self.0 as usize].expn_info = Some(info))
107     }
108
109     #[inline]
110     pub fn set_default_transparency(self, transparency: Transparency) {
111         assert_ne!(self, Mark::root());
112         HygieneData::with(|data| data.marks[self.0 as usize].default_transparency = transparency)
113     }
114
115     pub fn is_descendant_of(self, ancestor: Mark) -> bool {
116         HygieneData::with(|data| data.is_descendant_of(self, ancestor))
117     }
118
119     /// `mark.outer_is_descendant_of(ctxt)` is equivalent to but faster than
120     /// `mark.is_descendant_of(ctxt.outer())`.
121     pub fn outer_is_descendant_of(self, ctxt: SyntaxContext) -> bool {
122         HygieneData::with(|data| data.is_descendant_of(self, data.outer(ctxt)))
123     }
124
125     /// Computes a mark such that both input marks are descendants of (or equal to) the returned
126     /// mark. That is, the following holds:
127     ///
128     /// ```rust
129     /// let la = least_ancestor(a, b);
130     /// assert!(a.is_descendant_of(la))
131     /// assert!(b.is_descendant_of(la))
132     /// ```
133     pub fn least_ancestor(mut a: Mark, mut b: Mark) -> Mark {
134         HygieneData::with(|data| {
135             // Compute the path from a to the root
136             let mut a_path = FxHashSet::<Mark>::default();
137             while a != Mark::root() {
138                 a_path.insert(a);
139                 a = data.marks[a.0 as usize].parent;
140             }
141
142             // While the path from b to the root hasn't intersected, move up the tree
143             while !a_path.contains(&b) {
144                 b = data.marks[b.0 as usize].parent;
145             }
146
147             b
148         })
149     }
150
151     // Used for enabling some compatibility fallback in resolve.
152     #[inline]
153     pub fn looks_like_proc_macro_derive(self) -> bool {
154         HygieneData::with(|data| {
155             let mark_data = &data.marks[self.0 as usize];
156             if mark_data.default_transparency == Transparency::Opaque {
157                 if let Some(expn_info) = &mark_data.expn_info {
158                     if let ExpnFormat::MacroAttribute(name) = expn_info.format {
159                         if name.as_str().starts_with("derive(") {
160                             return true;
161                         }
162                     }
163                 }
164             }
165             false
166         })
167     }
168 }
169
170 #[derive(Debug)]
171 crate struct HygieneData {
172     marks: Vec<MarkData>,
173     syntax_contexts: Vec<SyntaxContextData>,
174     markings: FxHashMap<(SyntaxContext, Mark, Transparency), SyntaxContext>,
175 }
176
177 impl HygieneData {
178     crate fn new() -> Self {
179         HygieneData {
180             marks: vec![MarkData {
181                 parent: Mark::root(),
182                 // If the root is opaque, then loops searching for an opaque mark
183                 // will automatically stop after reaching it.
184                 default_transparency: Transparency::Opaque,
185                 expn_info: None,
186             }],
187             syntax_contexts: vec![SyntaxContextData {
188                 outer_mark: Mark::root(),
189                 transparency: Transparency::Opaque,
190                 prev_ctxt: SyntaxContext(0),
191                 opaque: SyntaxContext(0),
192                 opaque_and_semitransparent: SyntaxContext(0),
193                 dollar_crate_name: kw::DollarCrate,
194             }],
195             markings: FxHashMap::default(),
196         }
197     }
198
199     fn with<T, F: FnOnce(&mut HygieneData) -> T>(f: F) -> T {
200         GLOBALS.with(|globals| f(&mut *globals.hygiene_data.borrow_mut()))
201     }
202
203     fn outer(&self, ctxt: SyntaxContext) -> Mark {
204         self.syntax_contexts[ctxt.0 as usize].outer_mark
205     }
206
207     fn expn_info(&self, mark: Mark) -> Option<ExpnInfo> {
208         self.marks[mark.0 as usize].expn_info.clone()
209     }
210
211     fn is_descendant_of(&self, mut mark: Mark, ancestor: Mark) -> bool {
212         while mark != ancestor {
213             if mark == Mark::root() {
214                 return false;
215             }
216             mark = self.marks[mark.0 as usize].parent;
217         }
218         true
219     }
220 }
221
222 pub fn clear_markings() {
223     HygieneData::with(|data| data.markings = FxHashMap::default());
224 }
225
226 impl SyntaxContext {
227     #[inline]
228     pub const fn empty() -> Self {
229         SyntaxContext(0)
230     }
231
232     #[inline]
233     crate fn as_u32(self) -> u32 {
234         self.0
235     }
236
237     #[inline]
238     crate fn from_u32(raw: u32) -> SyntaxContext {
239         SyntaxContext(raw)
240     }
241
242     // Allocate a new SyntaxContext with the given ExpnInfo. This is used when
243     // deserializing Spans from the incr. comp. cache.
244     // FIXME(mw): This method does not restore MarkData::parent or
245     // SyntaxContextData::prev_ctxt or SyntaxContextData::opaque. These things
246     // don't seem to be used after HIR lowering, so everything should be fine
247     // as long as incremental compilation does not kick in before that.
248     pub fn allocate_directly(expansion_info: ExpnInfo) -> Self {
249         HygieneData::with(|data| {
250             data.marks.push(MarkData {
251                 parent: Mark::root(),
252                 default_transparency: Transparency::SemiTransparent,
253                 expn_info: Some(expansion_info),
254             });
255
256             let mark = Mark(data.marks.len() as u32 - 1);
257
258             data.syntax_contexts.push(SyntaxContextData {
259                 outer_mark: mark,
260                 transparency: Transparency::SemiTransparent,
261                 prev_ctxt: SyntaxContext::empty(),
262                 opaque: SyntaxContext::empty(),
263                 opaque_and_semitransparent: SyntaxContext::empty(),
264                 dollar_crate_name: kw::DollarCrate,
265             });
266             SyntaxContext(data.syntax_contexts.len() as u32 - 1)
267         })
268     }
269
270     /// Extend a syntax context with a given mark and default transparency for that mark.
271     pub fn apply_mark(self, mark: Mark) -> SyntaxContext {
272         assert_ne!(mark, Mark::root());
273         self.apply_mark_with_transparency(
274             mark, HygieneData::with(|data| data.marks[mark.0 as usize].default_transparency)
275         )
276     }
277
278     /// Extend a syntax context with a given mark and transparency
279     pub fn apply_mark_with_transparency(self, mark: Mark, transparency: Transparency)
280                                         -> SyntaxContext {
281         assert_ne!(mark, Mark::root());
282         if transparency == Transparency::Opaque {
283             return self.apply_mark_internal(mark, transparency);
284         }
285
286         let call_site_ctxt =
287             mark.expn_info().map_or(SyntaxContext::empty(), |info| info.call_site.ctxt());
288         let call_site_ctxt = if transparency == Transparency::SemiTransparent {
289             call_site_ctxt.modern()
290         } else {
291             call_site_ctxt.modern_and_legacy()
292         };
293
294         if call_site_ctxt == SyntaxContext::empty() {
295             return self.apply_mark_internal(mark, transparency);
296         }
297
298         // Otherwise, `mark` is a macros 1.0 definition and the call site is in a
299         // macros 2.0 expansion, i.e., a macros 1.0 invocation is in a macros 2.0 definition.
300         //
301         // In this case, the tokens from the macros 1.0 definition inherit the hygiene
302         // at their invocation. That is, we pretend that the macros 1.0 definition
303         // was defined at its invocation (i.e., inside the macros 2.0 definition)
304         // so that the macros 2.0 definition remains hygienic.
305         //
306         // See the example at `test/run-pass/hygiene/legacy_interaction.rs`.
307         let mut ctxt = call_site_ctxt;
308         for (mark, transparency) in self.marks() {
309             ctxt = ctxt.apply_mark_internal(mark, transparency);
310         }
311         ctxt.apply_mark_internal(mark, transparency)
312     }
313
314     fn apply_mark_internal(self, mark: Mark, transparency: Transparency) -> SyntaxContext {
315         HygieneData::with(|data| {
316             let syntax_contexts = &mut data.syntax_contexts;
317             let mut opaque = syntax_contexts[self.0 as usize].opaque;
318             let mut opaque_and_semitransparent =
319                 syntax_contexts[self.0 as usize].opaque_and_semitransparent;
320
321             if transparency >= Transparency::Opaque {
322                 let prev_ctxt = opaque;
323                 opaque = *data.markings.entry((prev_ctxt, mark, transparency)).or_insert_with(|| {
324                     let new_opaque = SyntaxContext(syntax_contexts.len() as u32);
325                     syntax_contexts.push(SyntaxContextData {
326                         outer_mark: mark,
327                         transparency,
328                         prev_ctxt,
329                         opaque: new_opaque,
330                         opaque_and_semitransparent: new_opaque,
331                         dollar_crate_name: kw::DollarCrate,
332                     });
333                     new_opaque
334                 });
335             }
336
337             if transparency >= Transparency::SemiTransparent {
338                 let prev_ctxt = opaque_and_semitransparent;
339                 opaque_and_semitransparent =
340                         *data.markings.entry((prev_ctxt, mark, transparency)).or_insert_with(|| {
341                     let new_opaque_and_semitransparent =
342                         SyntaxContext(syntax_contexts.len() as u32);
343                     syntax_contexts.push(SyntaxContextData {
344                         outer_mark: mark,
345                         transparency,
346                         prev_ctxt,
347                         opaque,
348                         opaque_and_semitransparent: new_opaque_and_semitransparent,
349                         dollar_crate_name: kw::DollarCrate,
350                     });
351                     new_opaque_and_semitransparent
352                 });
353             }
354
355             let prev_ctxt = self;
356             *data.markings.entry((prev_ctxt, mark, transparency)).or_insert_with(|| {
357                 let new_opaque_and_semitransparent_and_transparent =
358                     SyntaxContext(syntax_contexts.len() as u32);
359                 syntax_contexts.push(SyntaxContextData {
360                     outer_mark: mark,
361                     transparency,
362                     prev_ctxt,
363                     opaque,
364                     opaque_and_semitransparent,
365                     dollar_crate_name: kw::DollarCrate,
366                 });
367                 new_opaque_and_semitransparent_and_transparent
368             })
369         })
370     }
371
372     /// Pulls a single mark off of the syntax context. This effectively moves the
373     /// context up one macro definition level. That is, if we have a nested macro
374     /// definition as follows:
375     ///
376     /// ```rust
377     /// macro_rules! f {
378     ///    macro_rules! g {
379     ///        ...
380     ///    }
381     /// }
382     /// ```
383     ///
384     /// and we have a SyntaxContext that is referring to something declared by an invocation
385     /// of g (call it g1), calling remove_mark will result in the SyntaxContext for the
386     /// invocation of f that created g1.
387     /// Returns the mark that was removed.
388     pub fn remove_mark(&mut self) -> Mark {
389         HygieneData::with(|data| {
390             let outer_mark = data.syntax_contexts[self.0 as usize].outer_mark;
391             *self = data.syntax_contexts[self.0 as usize].prev_ctxt;
392             outer_mark
393         })
394     }
395
396     pub fn marks(mut self) -> Vec<(Mark, Transparency)> {
397         HygieneData::with(|data| {
398             let mut marks = Vec::new();
399             while self != SyntaxContext::empty() {
400                 let ctxt_data = &data.syntax_contexts[self.0 as usize];
401                 marks.push((ctxt_data.outer_mark, ctxt_data.transparency));
402                 self = ctxt_data.prev_ctxt;
403             }
404             marks.reverse();
405             marks
406         })
407     }
408
409     /// Adjust this context for resolution in a scope created by the given expansion.
410     /// For example, consider the following three resolutions of `f`:
411     ///
412     /// ```rust
413     /// mod foo { pub fn f() {} } // `f`'s `SyntaxContext` is empty.
414     /// m!(f);
415     /// macro m($f:ident) {
416     ///     mod bar {
417     ///         pub fn f() {} // `f`'s `SyntaxContext` has a single `Mark` from `m`.
418     ///         pub fn $f() {} // `$f`'s `SyntaxContext` is empty.
419     ///     }
420     ///     foo::f(); // `f`'s `SyntaxContext` has a single `Mark` from `m`
421     ///     //^ Since `mod foo` is outside this expansion, `adjust` removes the mark from `f`,
422     ///     //| and it resolves to `::foo::f`.
423     ///     bar::f(); // `f`'s `SyntaxContext` has a single `Mark` from `m`
424     ///     //^ Since `mod bar` not outside this expansion, `adjust` does not change `f`,
425     ///     //| and it resolves to `::bar::f`.
426     ///     bar::$f(); // `f`'s `SyntaxContext` is empty.
427     ///     //^ Since `mod bar` is not outside this expansion, `adjust` does not change `$f`,
428     ///     //| and it resolves to `::bar::$f`.
429     /// }
430     /// ```
431     /// This returns the expansion whose definition scope we use to privacy check the resolution,
432     /// or `None` if we privacy check as usual (i.e., not w.r.t. a macro definition scope).
433     pub fn adjust(&mut self, expansion: Mark) -> Option<Mark> {
434         let mut scope = None;
435         while !expansion.outer_is_descendant_of(*self) {
436             scope = Some(self.remove_mark());
437         }
438         scope
439     }
440
441     /// Adjust this context for resolution in a scope created by the given expansion
442     /// via a glob import with the given `SyntaxContext`.
443     /// For example:
444     ///
445     /// ```rust
446     /// m!(f);
447     /// macro m($i:ident) {
448     ///     mod foo {
449     ///         pub fn f() {} // `f`'s `SyntaxContext` has a single `Mark` from `m`.
450     ///         pub fn $i() {} // `$i`'s `SyntaxContext` is empty.
451     ///     }
452     ///     n(f);
453     ///     macro n($j:ident) {
454     ///         use foo::*;
455     ///         f(); // `f`'s `SyntaxContext` has a mark from `m` and a mark from `n`
456     ///         //^ `glob_adjust` removes the mark from `n`, so this resolves to `foo::f`.
457     ///         $i(); // `$i`'s `SyntaxContext` has a mark from `n`
458     ///         //^ `glob_adjust` removes the mark from `n`, so this resolves to `foo::$i`.
459     ///         $j(); // `$j`'s `SyntaxContext` has a mark from `m`
460     ///         //^ This cannot be glob-adjusted, so this is a resolution error.
461     ///     }
462     /// }
463     /// ```
464     /// This returns `None` if the context cannot be glob-adjusted.
465     /// Otherwise, it returns the scope to use when privacy checking (see `adjust` for details).
466     pub fn glob_adjust(&mut self, expansion: Mark, mut glob_ctxt: SyntaxContext)
467                        -> Option<Option<Mark>> {
468         let mut scope = None;
469         while !expansion.outer_is_descendant_of(glob_ctxt) {
470             scope = Some(glob_ctxt.remove_mark());
471             if self.remove_mark() != scope.unwrap() {
472                 return None;
473             }
474         }
475         if self.adjust(expansion).is_some() {
476             return None;
477         }
478         Some(scope)
479     }
480
481     /// Undo `glob_adjust` if possible:
482     ///
483     /// ```rust
484     /// if let Some(privacy_checking_scope) = self.reverse_glob_adjust(expansion, glob_ctxt) {
485     ///     assert!(self.glob_adjust(expansion, glob_ctxt) == Some(privacy_checking_scope));
486     /// }
487     /// ```
488     pub fn reverse_glob_adjust(&mut self, expansion: Mark, mut glob_ctxt: SyntaxContext)
489                                -> Option<Option<Mark>> {
490         if self.adjust(expansion).is_some() {
491             return None;
492         }
493
494         let mut marks = Vec::new();
495         while !expansion.outer_is_descendant_of(glob_ctxt) {
496             marks.push(glob_ctxt.remove_mark());
497         }
498
499         let scope = marks.last().cloned();
500         while let Some(mark) = marks.pop() {
501             *self = self.apply_mark(mark);
502         }
503         Some(scope)
504     }
505
506     #[inline]
507     pub fn modern(self) -> SyntaxContext {
508         HygieneData::with(|data| data.syntax_contexts[self.0 as usize].opaque)
509     }
510
511     #[inline]
512     pub fn modern_and_legacy(self) -> SyntaxContext {
513         HygieneData::with(|data| data.syntax_contexts[self.0 as usize].opaque_and_semitransparent)
514     }
515
516     #[inline]
517     pub fn outer(self) -> Mark {
518         HygieneData::with(|data| data.outer(self))
519     }
520
521     /// `ctxt.outer_expn_info()` is equivalent to but faster than
522     /// `ctxt.outer().expn_info()`.
523     #[inline]
524     pub fn outer_expn_info(self) -> Option<ExpnInfo> {
525         HygieneData::with(|data| data.expn_info(data.outer(self)))
526     }
527
528     pub fn dollar_crate_name(self) -> Symbol {
529         HygieneData::with(|data| data.syntax_contexts[self.0 as usize].dollar_crate_name)
530     }
531
532     pub fn set_dollar_crate_name(self, dollar_crate_name: Symbol) {
533         HygieneData::with(|data| {
534             let prev_dollar_crate_name = mem::replace(
535                 &mut data.syntax_contexts[self.0 as usize].dollar_crate_name, dollar_crate_name
536             );
537             assert!(dollar_crate_name == prev_dollar_crate_name ||
538                     prev_dollar_crate_name == kw::DollarCrate,
539                     "$crate name is reset for a syntax context");
540         })
541     }
542 }
543
544 impl fmt::Debug for SyntaxContext {
545     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
546         write!(f, "#{}", self.0)
547     }
548 }
549
550 /// Extra information for tracking spans of macro and syntax sugar expansion
551 #[derive(Clone, Hash, Debug, RustcEncodable, RustcDecodable)]
552 pub struct ExpnInfo {
553     /// The location of the actual macro invocation or syntax sugar , e.g.
554     /// `let x = foo!();` or `if let Some(y) = x {}`
555     ///
556     /// This may recursively refer to other macro invocations, e.g., if
557     /// `foo!()` invoked `bar!()` internally, and there was an
558     /// expression inside `bar!`; the call_site of the expression in
559     /// the expansion would point to the `bar!` invocation; that
560     /// call_site span would have its own ExpnInfo, with the call_site
561     /// pointing to the `foo!` invocation.
562     pub call_site: Span,
563     /// The span of the macro definition itself. The macro may not
564     /// have a sensible definition span (e.g., something defined
565     /// completely inside libsyntax) in which case this is None.
566     /// This span serves only informational purpose and is not used for resolution.
567     pub def_site: Option<Span>,
568     /// The format with which the macro was invoked.
569     pub format: ExpnFormat,
570     /// List of #[unstable]/feature-gated features that the macro is allowed to use
571     /// internally without forcing the whole crate to opt-in
572     /// to them.
573     pub allow_internal_unstable: Option<Lrc<[Symbol]>>,
574     /// Whether the macro is allowed to use `unsafe` internally
575     /// even if the user crate has `#![forbid(unsafe_code)]`.
576     pub allow_internal_unsafe: bool,
577     /// Enables the macro helper hack (`ident!(...)` -> `$crate::ident!(...)`)
578     /// for a given macro.
579     pub local_inner_macros: bool,
580     /// Edition of the crate in which the macro is defined.
581     pub edition: Edition,
582 }
583
584 /// The source of expansion.
585 #[derive(Clone, Hash, Debug, PartialEq, Eq, RustcEncodable, RustcDecodable)]
586 pub enum ExpnFormat {
587     /// e.g., #[derive(...)] <item>
588     MacroAttribute(Symbol),
589     /// e.g., `format!()`
590     MacroBang(Symbol),
591     /// Desugaring done by the compiler during HIR lowering.
592     CompilerDesugaring(CompilerDesugaringKind)
593 }
594
595 impl ExpnFormat {
596     pub fn name(&self) -> Symbol {
597         match *self {
598             ExpnFormat::MacroBang(name) | ExpnFormat::MacroAttribute(name) => name,
599             ExpnFormat::CompilerDesugaring(kind) => kind.name(),
600         }
601     }
602 }
603
604 /// The kind of compiler desugaring.
605 #[derive(Clone, Copy, Hash, Debug, PartialEq, Eq, RustcEncodable, RustcDecodable)]
606 pub enum CompilerDesugaringKind {
607     /// We desugar `if c { i } else { e }` to `match $ExprKind::Use(c) { true => i, _ => e }`.
608     /// However, we do not want to blame `c` for unreachability but rather say that `i`
609     /// is unreachable. This desugaring kind allows us to avoid blaming `c`.
610     IfTemporary,
611     QuestionMark,
612     TryBlock,
613     /// Desugaring of an `impl Trait` in return type position
614     /// to an `existential type Foo: Trait;` and replacing the
615     /// `impl Trait` with `Foo`.
616     ExistentialReturnType,
617     Async,
618     Await,
619     ForLoop,
620 }
621
622 impl CompilerDesugaringKind {
623     pub fn name(self) -> Symbol {
624         Symbol::intern(match self {
625             CompilerDesugaringKind::IfTemporary => "if",
626             CompilerDesugaringKind::Async => "async",
627             CompilerDesugaringKind::Await => "await",
628             CompilerDesugaringKind::QuestionMark => "?",
629             CompilerDesugaringKind::TryBlock => "try block",
630             CompilerDesugaringKind::ExistentialReturnType => "existential type",
631             CompilerDesugaringKind::ForLoop => "for loop",
632         })
633     }
634 }
635
636 impl Encodable for SyntaxContext {
637     fn encode<E: Encoder>(&self, _: &mut E) -> Result<(), E::Error> {
638         Ok(()) // FIXME(jseyfried) intercrate hygiene
639     }
640 }
641
642 impl Decodable for SyntaxContext {
643     fn decode<D: Decoder>(_: &mut D) -> Result<SyntaxContext, D::Error> {
644         Ok(SyntaxContext::empty()) // FIXME(jseyfried) intercrate hygiene
645     }
646 }