diff options
| author | Tolmachev Igor <me@igorek.dev> | 2026-05-10 12:54:41 +0300 |
|---|---|---|
| committer | Tolmachev Igor <me@igorek.dev> | 2026-05-10 12:54:41 +0300 |
| commit | 843242e692280d604b74324ba26ead6158223439 (patch) | |
| tree | e5f2d362b1c728f900d8214bc415752336fa4a94 /compiler/src/ast/models.rs | |
| parent | 1801afdbd0058cc9cc040b977de0d5652d65aab9 (diff) | |
| download | crisp-843242e692280d604b74324ba26ead6158223439.tar.gz crisp-843242e692280d604b74324ba26ead6158223439.zip | |
Remove Float from parser
Dropped to make the language simpler.
Diffstat (limited to 'compiler/src/ast/models.rs')
| -rw-r--r-- | compiler/src/ast/models.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/src/ast/models.rs b/compiler/src/ast/models.rs index db9728d..2a8c5ae 100644 --- a/compiler/src/ast/models.rs +++ b/compiler/src/ast/models.rs | |||
| @@ -4,7 +4,6 @@ use crate::span::Spanned; | |||
| 4 | 4 | ||
| 5 | #[derive(Clone, Debug, PartialEq)] | 5 | #[derive(Clone, Debug, PartialEq)] |
| 6 | pub enum Atom { | 6 | pub enum Atom { |
| 7 | Float(f64), | ||
| 8 | Integer(i64), | 7 | Integer(i64), |
| 9 | String(Rc<str>), | 8 | String(Rc<str>), |
| 10 | Symbol(Rc<str>), | 9 | Symbol(Rc<str>), |
