fix: float formating and float comparison

This commit is contained in:
Levy A.
2025-09-04 20:11:07 -03:00
parent 2ea2be6f85
commit 73e901010c
4 changed files with 206 additions and 152 deletions

View File

@@ -15,6 +15,7 @@ use crate::lexer::{Lexer, Token};
use crate::token::TokenType::{self, *};
use crate::Result;
use turso_macros::match_ignore_ascii_case;
use std::str;
macro_rules! peek_expect {
( $parser:expr, $( $x:ident ),* $(,)?) => {