Clean up compiler errors related to type name changes

This commit is contained in:
Eryn Wells 2017-04-03 16:12:12 -04:00
parent ddfac28b8c
commit b0aa38e387
3 changed files with 16 additions and 16 deletions

View file

@ -2,12 +2,12 @@
* Eryn Wells <eryn@erynwells.me>
*/
use types::*;
use types::{Bool, Char, Number};
#[derive(Debug, PartialEq)]
pub enum Token {
Boolean(Boolean),
Character(Character),
Boolean(Bool),
Character(Char),
Comment(String),
Dot,
Id(String),