提交 9ae76b36 编写于 作者: B bors

Auto merge of #31028 - erickt:ast-json, r=michaelwoerister

The protocol for `serialize::{En,De}code` doesn't allow for two integers to be serialized next to each other.

Closes #31025.

cc @michaelwoerister
......@@ -164,16 +164,31 @@ impl Eq for Span {}
impl Encodable for Span {
fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
try!(s.emit_u32(self.lo.0));
s.emit_u32(self.hi.0)
s.emit_struct("Span", 2, |s| {
try!(s.emit_struct_field("lo", 0, |s| {
self.lo.encode(s)
}));
s.emit_struct_field("hi", 1, |s| {
self.hi.encode(s)
})
})
}
}
impl Decodable for Span {
fn decode<D: Decoder>(d: &mut D) -> Result<Span, D::Error> {
let lo = BytePos(try! { d.read_u32() });
let hi = BytePos(try! { d.read_u32() });
Ok(mk_sp(lo, hi))
d.read_struct("Span", 2, |d| {
let lo = try!(d.read_struct_field("lo", 0, |d| {
BytePos::decode(d)
}));
let hi = try!(d.read_struct_field("hi", 1, |d| {
BytePos::decode(d)
}));
Ok(mk_sp(lo, hi))
})
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册