diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2016-05-08 21:19:29 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2016-05-14 13:26:40 +0300 |
| commit | 766f9b5a2ff2973bc18eddc91b988a2fe476b0a1 (patch) | |
| tree | f3febe6c0e985f4dae073e08b257eb6d511c09a6 /src/librustc_incremental | |
| parent | 212d5d43524123a45c6a88174fd3c771057faf47 (diff) | |
| download | rust-766f9b5a2ff2973bc18eddc91b988a2fe476b0a1.tar.gz rust-766f9b5a2ff2973bc18eddc91b988a2fe476b0a1.zip | |
Remove ExplicitSelf from HIR
Diffstat (limited to 'src/librustc_incremental')
| -rw-r--r-- | src/librustc_incremental/calculate_svh.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/librustc_incremental/calculate_svh.rs b/src/librustc_incremental/calculate_svh.rs index ef3ac4c3426..e914c38963c 100644 --- a/src/librustc_incremental/calculate_svh.rs +++ b/src/librustc_incremental/calculate_svh.rs @@ -172,7 +172,6 @@ mod svh_visitor { SawImplItem, SawStructField, SawVariant, - SawExplicitSelf, SawPath, SawBlock, SawPat, @@ -391,10 +390,6 @@ mod svh_visitor { SawStructField.hash(self.st); visit::walk_struct_field(self, s) } - fn visit_explicit_self(&mut self, es: &'a ExplicitSelf) { - SawExplicitSelf.hash(self.st); visit::walk_explicit_self(self, es) - } - fn visit_path(&mut self, path: &'a Path, _: ast::NodeId) { SawPath.hash(self.st); visit::walk_path(self, path) } |
