Boolean and Character are a little more filled out, and used by the Lexer

This commit is contained in:
Eryn Wells 2017-01-16 10:29:44 -08:00
parent 42d191d036
commit d6a9fc26cd
4 changed files with 29 additions and 19 deletions

View file

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