diff options
| author | Cameron Steffen <cam.steffen94@gmail.com> | 2022-06-28 13:15:30 -0500 |
|---|---|---|
| committer | Cameron Steffen <cam.steffen94@gmail.com> | 2022-07-01 10:04:19 -0500 |
| commit | ec82bc199611e7f1cf3acd612a65eed81d22636b (patch) | |
| tree | 370d40d9dfc6d84175cb8c0679fe7cd712e186f2 /compiler/rustc_hir | |
| parent | ca1e68b3229e710c3948a361ee770d846a88e6da (diff) | |
| download | rust-ec82bc199611e7f1cf3acd612a65eed81d22636b.tar.gz rust-ec82bc199611e7f1cf3acd612a65eed81d22636b.zip | |
Factor out hir::Node::Binding
Diffstat (limited to 'compiler/rustc_hir')
| -rw-r--r-- | compiler/rustc_hir/src/hir.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_hir/src/hir.rs b/compiler/rustc_hir/src/hir.rs index a7fc59255d7..a2ef158ce8d 100644 --- a/compiler/rustc_hir/src/hir.rs +++ b/compiler/rustc_hir/src/hir.rs @@ -3326,7 +3326,6 @@ pub enum Node<'hir> { Ty(&'hir Ty<'hir>), TypeBinding(&'hir TypeBinding<'hir>), TraitRef(&'hir TraitRef<'hir>), - Binding(&'hir Pat<'hir>), Pat(&'hir Pat<'hir>), Arm(&'hir Arm<'hir>), Block(&'hir Block<'hir>), @@ -3378,7 +3377,6 @@ impl<'hir> Node<'hir> { | Node::Block(..) | Node::Ctor(..) | Node::Pat(..) - | Node::Binding(..) | Node::Arm(..) | Node::Local(..) | Node::Crate(..) |
