Skip to content
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

Fix: Arrays can be printed and modify_field standalone #5848

Merged
merged 1 commit into from
Oct 21, 2024

Conversation

MikaelMayer
Copy link
Member

Description

A previous update forced the T under Object<T> to implement UpcastObject<dyn Any> to be able to print it.
However, this trait was never implemented on objects. Arrays can be converted to objects but it's not possible to cast them down to arrays again, because arrays are traits in Rust (dynamic pointers).
Until we wrap arrays with a newtype to cast them back to a regular struct, we can fix the Dafny runtime so that they are still printed as "object"

Second, modify-field!() at the end of a block was triggering parsing issues. I added a block wrapper in the macro to prevent that issue.

How has this been tested?

Two tests added in the runtime.

By submitting this pull request, I confirm that my contribution is made under the terms of the MIT license.

@MikaelMayer MikaelMayer merged commit 77287d8 into master Oct 21, 2024
22 checks passed
@MikaelMayer MikaelMayer deleted the fix_array_fields branch October 21, 2024 23:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants