-
Notifications
You must be signed in to change notification settings - Fork 181
Extern types #601
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Extern types #601
Changes from 10 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
7354930
Add TypeName::Extern
memoryleak47 17416bb
Add ExternDefId
memoryleak47 d046ce0
Add chalk_parse::ast::Item::Extern
memoryleak47 c673d17
Implement basic extern type parsing
memoryleak47 9f84f48
Implement lowering of extern types
memoryleak47 75e4869
removed obsolete fixme
memoryleak47 31ed52c
Extend lookup_generic_arg for extern types
memoryleak47 10b86af
Add test/extern_types (failing)
memoryleak47 3b918be
Fix tests
memoryleak47 2fca5af
More extern type tests
memoryleak47 8ecd0c9
Improve extern type tests
memoryleak47 404bc7e
Rename extern type to foreign type
memoryleak47 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,72 @@ | ||
| //! Tests for extern types | ||
|
|
||
| use super::*; | ||
|
|
||
| #[test] | ||
| fn extern_ty_trait_impl() { | ||
| test! { | ||
| program { | ||
| extern { type A; } | ||
| trait Foo {} | ||
| impl Foo for A {} | ||
| } | ||
|
|
||
| goal { A: Foo } yields { "Unique" } | ||
| } | ||
| } | ||
|
|
||
| #[test] | ||
| fn extern_ty_single() { | ||
jackh726 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| lowering_success! { | ||
| program { | ||
| extern { type A; } | ||
| } | ||
| } | ||
| } | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you provide like a one-line comment on each of these for why this test exists (and passes as it is). |
||
| #[test] | ||
| fn extern_ty_is_well_formed() { | ||
| test! { | ||
| program { | ||
| extern { type A; } | ||
| } | ||
|
|
||
| goal { WellFormed(A) } yields { "Unique" } | ||
| } | ||
| } | ||
|
|
||
| #[test] | ||
| fn extern_ty_is_not_sized() { | ||
| test! { | ||
| program { | ||
| #[lang(sized)] trait Sized {} | ||
| extern { type A; } | ||
| } | ||
|
|
||
| goal { not { A: Sized } } yields { "Unique" } | ||
| } | ||
| } | ||
|
|
||
| #[test] | ||
| fn extern_ty_is_not_copy() { | ||
| test! { | ||
| program { | ||
| #[lang(copy)] trait Copy {} | ||
| extern { type A; } | ||
| } | ||
|
|
||
| goal { not { A: Copy } } yields { "Unique" } | ||
| } | ||
| } | ||
|
|
||
| #[test] | ||
| fn extern_ty_is_not_clone() { | ||
| test! { | ||
| program { | ||
| #[lang(clone)] trait Clone {} | ||
| extern { type A; } | ||
| } | ||
|
|
||
| goal { not { A: Clone } } yields { "Unique" } | ||
| } | ||
| } | ||
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.