diff options
author | thajohns <thajohns@clarkson.edu> | 2021-09-09 01:15:22 -0400 |
---|---|---|
committer | Graham Northup <grahamnorthup@yahoo.com> | 2021-09-10 04:05:55 -0400 |
commit | d6e399973e9bc6447a28b80cacffcbc6a768f1ed (patch) | |
tree | 772939eb5d49bdb6ee8e5d632f2224867f6e817d /src/lang/mod.rs | |
parent | ee11b17c0e2796bd3d843a8a516c12453af75927 (diff) |
got pre-linking steps working, removed glob includes
Diffstat (limited to 'src/lang/mod.rs')
-rw-r--r-- | src/lang/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lang/mod.rs b/src/lang/mod.rs index 14a9202..7a62cd1 100644 --- a/src/lang/mod.rs +++ b/src/lang/mod.rs @@ -4,7 +4,7 @@ pub mod parser; pub use self::parser::Parser; // NB: No Eq due to embedded f32 -#[derive(Debug,PartialEq,Clone)] +#[derive(Debug, PartialEq, Clone)] pub enum Token { Ident(String), Integer(isize), @@ -14,7 +14,7 @@ pub enum Token { EOF, } -#[derive(Debug,PartialEq,Eq,Clone,Copy)] +#[derive(Debug, PartialEq, Eq, Clone, Copy)] pub enum TokType { Ident, Integer, |