summaryrefslogtreecommitdiff
path: root/oryxc/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'oryxc/src/main.rs')
-rw-r--r--oryxc/src/main.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/oryxc/src/main.rs b/oryxc/src/main.rs
index 636b8ed..e3523bd 100644
--- a/oryxc/src/main.rs
+++ b/oryxc/src/main.rs
@@ -3,6 +3,7 @@
mod arena;
mod compiler;
mod errors;
+mod hashtrie;
mod intern;
mod lexer;
mod parser;
@@ -29,10 +30,10 @@ pub struct Flags {
#[derive(Parser)]
struct Args {
- #[arg(short = 'l', long)]
+ #[arg(long)]
debug_lexer: bool,
- #[arg(short = 'p', long)]
+ #[arg(long)]
debug_parser: bool,
#[arg(short = 's', long, default_value = "standard")]
@@ -78,7 +79,7 @@ fn main() {
fn usage() -> String {
format!(
concat!(
- "Usage: {0} [-lp] [-s oneline|standard] [-t threads]\n",
+ "Usage: {0} [-s oneline|standard] [-t threads]\n",
" {0} -h",
),
errors::progname().display()