-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for user-defined
struct
(#78)
* Add struct/tuple handling to `solc_to_k` * Set Version: 0.1.18 * Add tests for struct support; minor error msg fix * Set Version: 0.1.20 * Set Version: 0.1.21 * Rename `field` var to avoid shadowing * Fix typo in `rule` * Set Version: 0.1.23 * Set Version: 0.1.76 * Set Version: 0.1.77 * Update `_range_predicates` to support structs * Add `bytes32` var to a struct in `StructTypeTest` * Code quality fix * Update `StructTypeTest` signature in test list * Update `solc_to_k` tests for structs * Set Version: 0.1.78 * Update expected output for `kompile` * Set Version: 0.1.82 * Review type, arg name fixes * Refactor component unwrapping methods * Move `arg_name` to `Input`; minor code review fix * Code quality fix * Make `make_single_type` and `make_complex_type` private * Refactor `tuple` input data for `solc_to_k` tests * Respect `typle` type used for `inputs` * Return `arg_names` and `_types` to `Method` * Use `tuple` literals in `solc_to_k` tests * Set Version: 0.1.83 * Set Version: 0.1.84 * Turn `Input` methods to properties,rename `_field` * Set Version: 0.1.85 --------- Co-authored-by: devops <[email protected]> Co-authored-by: rv-jenkins <[email protected]>
- Loading branch information
1 parent
2766f97
commit e38c22d
Showing
9 changed files
with
323 additions
and
36 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 +1 @@ | ||
0.1.84 | ||
0.1.85 |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "kontrol" | ||
version = "0.1.84" | ||
version = "0.1.85" | ||
description = "Foundry integration for KEVM" | ||
authors = [ | ||
"Runtime Verification, Inc. <[email protected]>", | ||
|
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
if TYPE_CHECKING: | ||
from typing import Final | ||
|
||
VERSION: Final = '0.1.84' | ||
VERSION: Final = '0.1.85' |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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.