-
Notifications
You must be signed in to change notification settings - Fork 267
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
Feat: Ability to emit sync-compatible Rust code. #6040
Open
MikaelMayer
wants to merge
22
commits into
master
Choose a base branch
from
fix-5969-sync-for-rust
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
ba89c76
Feat: Ability to emit sync-compatible Rust code.
MikaelMayer 03adc1b
Merge branch 'master' into fix-5969-sync-for-rust
MikaelMayer fb43df6
Added missing Cargo.toml
MikaelMayer 1c6bb02
Merge branch 'master' into fix-5969-sync-for-rust
MikaelMayer 7f4c46e
Fixed cargo file
MikaelMayer ca0e2c1
Merge branch 'fix-5969-sync-for-rust' of https://github.com/dafny-lan…
MikaelMayer bbaf95d
Added missing main
MikaelMayer d6eb4cb
Unified the two downcast methods
MikaelMayer cd8b320
Ensure Rc can coerce too
MikaelMayer d0ad506
Fixed CI test
MikaelMayer e661f2e
Merge branch 'master' into fix-5969-sync-for-rust
MikaelMayer e837fb3
fix: remove deadlock from Sequence (#6056)
ajewellamz be5b210
Added necessary traits for trait generation (Sync + Send)
MikaelMayer a03084d
Latest version
MikaelMayer b490b29
Merge branch 'master' into fix-5969-sync-for-rust
MikaelMayer 72bc49d
Other version with Sync and Send on top of Any
MikaelMayer dfb533a
Merge branch 'fix-5969-sync-for-rust' of https://github.com/dafny-lan…
MikaelMayer 10c60f4
Support for sync-ed functions
MikaelMayer 7255d3d
Support for functions in sync
MikaelMayer d07403b
Merge branch 'master' into fix-5969-sync-for-rust
MikaelMayer f8225f9
Fixed functions
MikaelMayer 7429b75
Merge branch 'master' into fix-5969-sync-for-rust
MikaelMayer 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
2 changes: 1 addition & 1 deletion
2
Source/DafnyCore.Test/GeneratedFromDafny/FactorPathsOptimizationTest.cs
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
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.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using a term distinct from "RC" throughout for the abstract concept that will be mapped to either
Rc
orArc
. It's easy to get the concepts confused here, and that might have been a factor in initially missing thatIsRc
was testing for the wrong thing.