Remove usize and isize from data model

This commit is contained in:
David Tolnay
2017-01-25 08:59:34 -08:00
parent 8cb6607e82
commit e0c049dbf2
13 changed files with 76 additions and 150 deletions
-2
View File
@@ -1,12 +1,10 @@
#[derive(Clone, PartialEq, Debug)]
pub enum Token<'a> {
Bool(bool),
Isize(isize),
I8(i8),
I16(i16),
I32(i32),
I64(i64),
Usize(usize),
U8(u8),
U16(u16),
U32(u32),