From 98ab014603e13d546ffbba3d0ff34f6df427d13c Mon Sep 17 00:00:00 2001 From: Marceline Cramer Date: Mon, 4 May 2026 18:56:13 -0600 Subject: [PATCH] Add to-do for bignum integer parsing --- crates/frontend/src/ast.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/frontend/src/ast.rs b/crates/frontend/src/ast.rs index b913463..5967811 100644 --- a/crates/frontend/src/ast.rs +++ b/crates/frontend/src/ast.rs @@ -256,6 +256,7 @@ pub fn expr(db: &dyn Database, ast: AstNode) -> Expr { Value(match int.contents(db).to_string().parse() { Ok(val) => Integer(val), Err(_) => { + // TODO: use bignum diagnostic::SimpleError::new(int, "failed to parse integer literal").accumulate(db); Integer(0) }