Skip to content

Commit 1c0a546

Browse files
committedAug 17, 2019
Remove unused SyntaxContext serialization impls
The implementations were wrong and unused.
1 parent d04af19 commit 1c0a546

File tree

3 files changed

+0
-20
lines changed

3 files changed

+0
-20
lines changed
 

‎src/librustc_metadata/decoder.rs

-8
Original file line numberDiff line numberDiff line change
@@ -356,14 +356,6 @@ impl SpecializedDecoder<Ident> for DecodeContext<'_, '_> {
356356
}
357357
}
358358

359-
impl SpecializedDecoder<SyntaxContext> for DecodeContext<'_, '_> {
360-
fn specialized_decode(&mut self) -> Result<SyntaxContext, Self::Error> {
361-
// FIXME(jseyfried): intercrate hygiene
362-
363-
Ok(SyntaxContext::empty())
364-
}
365-
}
366-
367359
impl<'a, 'tcx> SpecializedDecoder<Fingerprint> for DecodeContext<'a, 'tcx> {
368360
fn specialized_decode(&mut self) -> Result<Fingerprint, Self::Error> {
369361
Fingerprint::decode_opaque(&mut self.opaque)

‎src/librustc_metadata/encoder.rs

-8
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ use syntax::attr;
3333
use syntax::source_map::Spanned;
3434
use syntax::symbol::{kw, sym, Ident};
3535
use syntax_pos::{self, FileName, SourceFile, Span};
36-
use syntax_pos::hygiene::SyntaxContext;
3736
use log::{debug, trace};
3837

3938
use rustc::hir::{self, PatKind};
@@ -181,13 +180,6 @@ impl SpecializedEncoder<Ident> for EncodeContext<'tcx> {
181180
}
182181
}
183182

184-
impl SpecializedEncoder<SyntaxContext> for EncodeContext<'tcx> {
185-
fn specialized_encode(&mut self, _ctxt: &SyntaxContext) -> Result<(), Self::Error> {
186-
// FIXME(jseyfried): intercrate hygiene
187-
Ok(())
188-
}
189-
}
190-
191183
impl<'tcx> SpecializedEncoder<LocalDefId> for EncodeContext<'tcx> {
192184
#[inline]
193185
fn specialized_encode(&mut self, def_id: &LocalDefId) -> Result<(), Self::Error> {

‎src/libsyntax_pos/hygiene.rs

-4
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,3 @@ impl Decodable for ExpnId {
750750
Ok(ExpnId::root()) // FIXME(jseyfried) intercrate hygiene
751751
}
752752
}
753-
754-
impl UseSpecializedEncodable for SyntaxContext {}
755-
756-
impl UseSpecializedDecodable for SyntaxContext {}

0 commit comments

Comments
 (0)
Please sign in to comment.