From 1a9962ecad71541685f967069db3715fa55306be Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Thu, 16 May 2024 13:38:46 +0200 Subject: [PATCH] fix: Removed fmt and tree from clap params --- src/main.zig | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main.zig b/src/main.zig index addd9b7a..821b2132 100644 --- a/src/main.zig +++ b/src/main.zig @@ -218,8 +218,6 @@ pub fn main() u8 { \\-h, --help Show help and exit \\-t, --test Run test blocks in provided script \\-c, --check Check script for error without running it - \\-f, --fmt Format script - \\-a, --tree Dump AST as JSON \\-v, --version Print version and exit \\-L, --library ... Add search path for external libraries \\... @@ -301,10 +299,6 @@ pub fn main() u8 { .Check else if (res.args.@"test" == 1) .Test - else if (res.args.fmt == 1) - .Fmt - else if (res.args.tree == 1) - .Ast else if (res.positionals.len == 0) .Repl else