-
-
Notifications
You must be signed in to change notification settings - Fork 797
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix[lang]: fix importing of flag types (#3871)
fix imports for flag types. this is a missed case from 8ccacb3. this commit adds flags into the module data and threads them through codegen. --------- Co-authored-by: Charles Cooper <[email protected]>
- Loading branch information
1 parent
e589278
commit 05ec5a1
Showing
5 changed files
with
54 additions
and
7 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
def test_import_flag_types(make_input_bundle, get_contract): | ||
lib1 = """ | ||
import lib2 | ||
flag Roles: | ||
ADMIN | ||
USER | ||
enum Roles2: | ||
ADMIN | ||
USER | ||
role: Roles | ||
role2: Roles2 | ||
role3: lib2.Roles3 | ||
""" | ||
lib2 = """ | ||
flag Roles3: | ||
ADMIN | ||
USER | ||
NOBODY | ||
""" | ||
contract = """ | ||
import lib1 | ||
initializes: lib1 | ||
@external | ||
def bar(r: lib1.Roles, r2: lib1.Roles2, r3: lib1.lib2.Roles3) -> bool: | ||
lib1.role = r | ||
lib1.role2 = r2 | ||
lib1.role3 = r3 | ||
assert lib1.role == lib1.Roles.ADMIN | ||
assert lib1.role2 == lib1.Roles2.USER | ||
assert lib1.role3 == lib1.lib2.Roles3.NOBODY | ||
return True | ||
""" | ||
|
||
input_bundle = make_input_bundle({"lib1.vy": lib1, "lib2.vy": lib2}) | ||
c = get_contract(contract, input_bundle=input_bundle) | ||
assert c.bar(1, 2, 4) is True |
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
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