forked from ethereum/fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reject certain code that should return but doesn't
Fixes ethereum#497
- Loading branch information
Showing
8 changed files
with
37 additions
and
10 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
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
14 changes: 14 additions & 0 deletions
14
crates/analyzer/tests/snapshots/errors__missing_return_after_if.snap
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
source: crates/analyzer/tests/errors.rs | ||
expression: "error_string(&path, &src)" | ||
|
||
--- | ||
error: function body is missing a return or revert statement | ||
┌─ compile_errors/missing_return_after_if.fe:2:13 | ||
│ | ||
2 │ pub def bar(val: u256) -> u256: | ||
│ ^^^ ---- expected function to return `u256` | ||
│ │ | ||
│ all paths of this function must `return` or `revert` | ||
|
||
|
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
4 changes: 4 additions & 0 deletions
4
crates/test-files/fixtures/compile_errors/missing_return_after_if.fe
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
contract Foo: | ||
pub def bar(val: u256) -> u256: | ||
if val > 1: | ||
return 5 |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ contract Foo: | |
if val > 1: | ||
return 5 | ||
else: | ||
x = 1 | ||
x:u256 = 1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Fixed an issue with a missing return statement not properly detected. | ||
|
||
Previous to this fix, the following code compiles but it should not: | ||
|
||
``` | ||
contract Foo: | ||
pub def bar(val: u256) -> u256: | ||
if val > 1: | ||
return 5 | ||
``` | ||
|
||
With this change, the compiler rightfully detects that the code is missing | ||
a `return` or `revert` statement after the `if` statement since it is not | ||
guaranteed that the path of execution always follows the arm of the `if` statement. |