-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduces models for call contexts, messages and call outputs. Depending on the verbosity level, we now render a an execution trace for counterexample paths, setUp() + explored paths and test deployment (constructor) path. This also introduces a number of semantic fixes related to context handling, such as: - max call depth - forbidden opcodes in static context - reading returndata out of bounds reverts Additionally we now have better handling of exceptions for control flow: we can halt the current context by raising a subclass of EvmException, or halt the current path by raising a subclass of HalmosException. Co-authored-by: Daejun Park <[email protected]>
- Loading branch information
1 parent
c1a175f
commit d5be133
Showing
25 changed files
with
2,510 additions
and
420 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Migrate code style to Black | ||
449404c7a2b318b8203dbccbeac11c87d20c422f | ||
00cc14c20659cbf717594451dfc7906b295dca98 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
openzeppelin/=../../../tests/lib/openzeppelin-contracts/contracts/ | ||
ds-test/=../../../tests/lib/forge-std/lib/ds-test/src/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
openzeppelin/=../../../tests/lib/openzeppelin-contracts/contracts/ | ||
ds-test/=../../../tests/lib/forge-std/lib/ds-test/src/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.