Skip to content

Commit bacacce

Browse files
authored
refactor(debugger): rewrite draw code (#6522)
* chore: enable unreachable_pub * chore: use Debugger::builder() * test: add a simple debuggable test * refactor: use let-else to reduce indentation * fix: debugger panic handler * test: update debugger test * fix: solc artifact absolute path * refactor: src_text * refactor: add a wrapper for source lines * feat: minimum terminal size * refactor: rest of the draw functions * chore: explain panic hook * chore: remove whitespace hack * chore: clippy
1 parent 5a4daaf commit bacacce

23 files changed

+711
-614
lines changed

.cargo/config.toml

+5-10
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
[alias]
22
cheats = "test -p foundry-cheatcodes-spec --features schema tests::"
3+
test-debugger = "test -p forge --test cli manual_debug_setup -- --include-ignored --nocapture"
34

5+
# Increase the stack size to 10MB for Windows targets, which is in line with Linux
6+
# (whereas default for Windows is 1MB).
47
[target.x86_64-pc-windows-msvc]
5-
rustflags = [
6-
# Increases the stack size to 10MB, which is
7-
# in line with Linux (whereas default for Windows is 1MB)
8-
"-Clink-arg=/STACK:10000000",
9-
]
8+
rustflags = ["-Clink-arg=/STACK:10000000"]
109

1110
[target.i686-pc-windows-msvc]
12-
rustflags = [
13-
# Increases the stack size to 10MB, which is
14-
# in line with Linux (whereas default for Windows is 1MB)
15-
"-Clink-arg=/STACK:10000000",
16-
]
11+
rustflags = ["-Clink-arg=/STACK:10000000"]

Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cli/src/utils/cmd.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use foundry_compilers::{
1010
Artifact, ProjectCompileOutput,
1111
};
1212
use foundry_config::{error::ExtractConfigError, figment::Figment, Chain, Config, NamedChain};
13-
use foundry_debugger::DebuggerBuilder;
13+
use foundry_debugger::Debugger;
1414
use foundry_evm::{
1515
debug::DebugArena,
1616
executors::{DeployResult, EvmError, ExecutionErr, RawCallResult},
@@ -404,7 +404,7 @@ pub async fn handle_traces(
404404

405405
if debug {
406406
let sources = etherscan_identifier.get_compiled_contracts().await?;
407-
let mut debugger = DebuggerBuilder::new()
407+
let mut debugger = Debugger::builder()
408408
.debug_arena(&result.debug)
409409
.decoder(&decoder)
410410
.sources(sources)

crates/debugger/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ homepage.workspace = true
1010
repository.workspace = true
1111

1212
[dependencies]
13+
foundry-common.workspace = true
14+
foundry-compilers.workspace = true
1315
foundry-evm-core.workspace = true
1416
foundry-evm-traces.workspace = true
15-
foundry-common.workspace = true
1617

1718
alloy-primitives.workspace = true
1819

crates/debugger/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! Interactive Solidity TUI debugger.
44
5-
#![warn(unused_crate_dependencies)]
5+
#![warn(unused_crate_dependencies, unreachable_pub)]
66

77
#[macro_use]
88
extern crate tracing;

crates/debugger/src/op.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
/// Named parameter of an EVM opcode.
22
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
3-
pub struct OpcodeParam {
3+
pub(crate) struct OpcodeParam {
44
/// The name of the parameter.
5-
pub name: &'static str,
5+
pub(crate) name: &'static str,
66
/// The index of the parameter on the stack. This is relative to the top of the stack.
7-
pub index: usize,
7+
pub(crate) index: usize,
88
}
99

1010
impl OpcodeParam {
1111
/// Returns the list of named parameters for the given opcode.
1212
#[inline]
13-
pub fn of(op: u8) -> &'static [Self] {
13+
pub(crate) fn of(op: u8) -> &'static [Self] {
1414
MAP[op as usize]
1515
}
1616
}

0 commit comments

Comments
 (0)