Skip to content

Commit

Permalink
Fix boa cli history (#3875)
Browse files Browse the repository at this point in the history
* Fix boa cli history

* Ignore dead code warning in fuzzer
  • Loading branch information
raskad authored Jun 14, 2024
1 parent 95ba660 commit 32e7562
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
12 changes: 12 additions & 0 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ boa_engine = { workspace = true, features = ["deser", "flowgraph", "trace"] }
boa_parser.workspace = true
boa_gc.workspace = true
boa_runtime.workspace = true
rustyline = { workspace = true, features = ["derive"]}
rustyline = { workspace = true, features = ["derive", "with-file-history"] }
clap = { workspace = true, features = ["derive"] }
serde_json.workspace = true
colored.workspace = true
Expand Down
1 change: 1 addition & 0 deletions tests/fuzz/fuzz_targets/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ impl Debug for FuzzData {
}
}

#[allow(dead_code)]
pub struct FuzzSource {
pub interner: Interner,
pub source: String,
Expand Down

0 comments on commit 32e7562

Please sign in to comment.