fix the remaining warnings
This commit is contained in:
parent
da34268be1
commit
538fcf244f
44
src/de.rs
44
src/de.rs
@ -107,7 +107,7 @@ pub enum TokenKind {
|
||||
EndKind,
|
||||
}
|
||||
|
||||
static primitive_token_kinds: [TokenKind, .. 12] = [
|
||||
static PRIMITIVE_TOKEN_KINDS: [TokenKind, .. 12] = [
|
||||
IntKind,
|
||||
I8Kind,
|
||||
I16Kind,
|
||||
@ -122,12 +122,12 @@ static primitive_token_kinds: [TokenKind, .. 12] = [
|
||||
F64Kind,
|
||||
];
|
||||
|
||||
static str_token_kinds: [TokenKind, .. 2] = [
|
||||
static STR_TOKEN_KINDS: [TokenKind, .. 2] = [
|
||||
StrKind,
|
||||
StringKind,
|
||||
];
|
||||
|
||||
static compound_token_kinds: [TokenKind, .. 6] = [
|
||||
static COMPOUND_TOKEN_KINDS: [TokenKind, .. 6] = [
|
||||
OptionKind,
|
||||
EnumStartKind,
|
||||
StructStartKind,
|
||||
@ -236,19 +236,19 @@ pub trait Deserializer<E>: Iterator<Result<Token, E>> {
|
||||
#[inline]
|
||||
fn expect_num<T: NumCast>(&mut self, token: Token) -> Result<T, E> {
|
||||
match token {
|
||||
Int(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
I8(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
I16(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
I32(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
I64(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
Uint(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
U8(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
U16(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
U32(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
U64(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
F32(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
F64(x) => to_result!(num::cast(x), self.syntax_error(token, primitive_token_kinds)),
|
||||
token => Err(self.syntax_error(token, primitive_token_kinds)),
|
||||
Int(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
I8(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
I16(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
I32(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
I64(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
Uint(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
U8(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
U16(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
U32(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
U64(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
F32(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
F64(x) => to_result!(num::cast(x), self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
token => Err(self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
}
|
||||
}
|
||||
|
||||
@ -267,7 +267,7 @@ pub trait Deserializer<E>: Iterator<Result<Token, E>> {
|
||||
U64(x) => to_result!(num::from_u64(x), self.conversion_error(token)),
|
||||
F32(x) => to_result!(num::from_f32(x), self.conversion_error(token)),
|
||||
F64(x) => to_result!(num::from_f64(x), self.conversion_error(token)),
|
||||
token => Err(self.syntax_error(token, primitive_token_kinds)),
|
||||
token => Err(self.syntax_error(token, PRIMITIVE_TOKEN_KINDS)),
|
||||
}
|
||||
}
|
||||
|
||||
@ -289,7 +289,7 @@ pub trait Deserializer<E>: Iterator<Result<Token, E>> {
|
||||
fn expect_str(&mut self, token: Token) -> Result<&'static str, E> {
|
||||
match token {
|
||||
Str(value) => Ok(value),
|
||||
token => Err(self.syntax_error(token, str_token_kinds)),
|
||||
token => Err(self.syntax_error(token, STR_TOKEN_KINDS)),
|
||||
}
|
||||
}
|
||||
|
||||
@ -299,7 +299,7 @@ pub trait Deserializer<E>: Iterator<Result<Token, E>> {
|
||||
Char(value) => Ok(value.to_string()),
|
||||
Str(value) => Ok(value.to_string()),
|
||||
String(value) => Ok(value),
|
||||
token => Err(self.syntax_error(token, str_token_kinds)),
|
||||
token => Err(self.syntax_error(token, STR_TOKEN_KINDS)),
|
||||
}
|
||||
}
|
||||
|
||||
@ -371,7 +371,7 @@ pub trait Deserializer<E>: Iterator<Result<Token, E>> {
|
||||
}
|
||||
}
|
||||
token => {
|
||||
return Err(self.syntax_error(token, str_token_kinds));
|
||||
return Err(self.syntax_error(token, STR_TOKEN_KINDS));
|
||||
}
|
||||
}
|
||||
|
||||
@ -842,7 +842,7 @@ impl<D: Deserializer<E>, E> Deserializable<D, E> for IgnoreTokens {
|
||||
}
|
||||
|
||||
End => {
|
||||
Err(d.syntax_error(token, compound_token_kinds))
|
||||
Err(d.syntax_error(token, COMPOUND_TOKEN_KINDS))
|
||||
}
|
||||
|
||||
_ => Ok(IgnoreTokens),
|
||||
@ -903,7 +903,7 @@ impl GatherTokens {
|
||||
self.gather_map(d)
|
||||
}
|
||||
End => {
|
||||
Err(d.syntax_error(token, compound_token_kinds))
|
||||
Err(d.syntax_error(token, COMPOUND_TOKEN_KINDS))
|
||||
}
|
||||
token => {
|
||||
self.tokens.push(token);
|
||||
|
@ -906,21 +906,22 @@ fn fmt_f64_or_null<W: Writer>(wr: &mut W, v: f64) -> IoResult<()> {
|
||||
}
|
||||
|
||||
fn spaces<W: Writer>(wr: &mut W, mut n: uint) -> IoResult<()> {
|
||||
static len: uint = 16;
|
||||
static buf: [u8, ..len] = [b' ', ..len];
|
||||
static LEN: uint = 16;
|
||||
static BUF: [u8, ..LEN] = [b' ', ..LEN];
|
||||
|
||||
while n >= len {
|
||||
try!(wr.write(buf));
|
||||
n -= len;
|
||||
while n >= LEN {
|
||||
try!(wr.write(BUF));
|
||||
n -= LEN;
|
||||
}
|
||||
|
||||
if n > 0 {
|
||||
wr.write(buf.slice_to(n))
|
||||
wr.write(BUF.slice_to(n))
|
||||
} else {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
#[deriving(Show)]
|
||||
enum SerializerState {
|
||||
ValueState,
|
||||
@ -928,6 +929,7 @@ enum SerializerState {
|
||||
StructState,
|
||||
EnumState,
|
||||
}
|
||||
*/
|
||||
|
||||
/// A structure for implementing serialization to JSON.
|
||||
pub struct Serializer<W> {
|
||||
@ -1484,7 +1486,7 @@ enum ParserState {
|
||||
// Parse ',' or ']' after an element in an object.
|
||||
ParseObjectCommaOrEnd,
|
||||
// Parse a key in an object.
|
||||
ParseObjectKey,
|
||||
//ParseObjectKey,
|
||||
// Parse a value in an object.
|
||||
ParseObjectValue,
|
||||
}
|
||||
@ -1669,7 +1671,7 @@ impl<Iter: Iterator<char>> Iterator<Result<de::Token, ParserError>> for Parser<I
|
||||
ParseListCommaOrEnd => Some(self.parse_list_comma_or_end()),
|
||||
ParseObjectStart => Some(self.parse_object_start()),
|
||||
ParseObjectCommaOrEnd => Some(self.parse_object_comma_or_end()),
|
||||
ParseObjectKey => Some(self.parse_object_key()),
|
||||
//ParseObjectKey => Some(self.parse_object_key()),
|
||||
ParseObjectValue => Some(self.parse_object_value()),
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user