Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
xasopheno committed Jun 25, 2023
1 parent e25fd34 commit 99cb337
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 17 deletions.
15 changes: 4 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions core/src/ui/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ pub fn clear_screen() {
{
eprintln!("Failed to clear the screen: Command 'cls' is not recognized");
}
} else {
if std::process::Command::new("clear").status().is_err() {
eprintln!("Failed to clear the screen: Command 'clear' is not recognized");
}
} else if std::process::Command::new("clear").status().is_err() {
eprintln!("Failed to clear the screen: Command 'clear' is not recognized");
}
}

Expand Down
4 changes: 2 additions & 2 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ license = "GPL-3.0"
resolver="2"

[build-dependencies.lalrpop]
version = "0.19.10"
version = "0.19.12"
features = ["lexer"]

[dependencies]
weresocool_ast = { path = "../ast", version = "^1.0.47", default_features=false, optional=true }
weresocool_error = { path = "../error", version = "^1.0.47", default_features=false, optional=true }
weresocool_shared = { path = "../shared", version = "^1.0.47" }
scop = { path = "../scop", version = "^1.0.47" }
lalrpop-util = { version="0.19.10", features=["lexer"]}
lalrpop-util = { version="0.19.12", features=["lexer"]}
regex = "1.5.4"
colored = "2.0.0"
num-rational = "0.3.2"
Expand Down

0 comments on commit 99cb337

Please sign in to comment.