-
Notifications
You must be signed in to change notification settings - Fork 109
Fix migration of 5.4's Pexp_pack
#650
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
Open
dra27-js
wants to merge
2
commits into
ocaml-ppx:main
Choose a base branch
from
dra27:dropped-attrs
base: main
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
2 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| (executable | ||
| (name id_driver) | ||
| (modules id_driver) | ||
| (libraries ppxlib)) | ||
|
|
||
| (cram | ||
| (enabled_if | ||
| (>= %{ocaml_version} "5.4")) | ||
| (deps id_driver.exe)) |
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 @@ | ||
| let () = Ppxlib.Driver.standalone () |
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,28 @@ | ||
| The signature for package types, as well as packed expressions | ||
| changed inbetween. | ||
|
|
||
| Originally we had a bug in the migrations that would silently drop some | ||
| attributes. | ||
|
|
||
| $ cat > test.ml << EOF | ||
| > module type S = sig type t end | ||
| > let f (module K : S with type t = int [@foo]) = () | ||
| > let f (module K : S with type t = (int [@foo])) = () | ||
| > let f (module K : S with type t = (int [@foo])[@bar]) = () | ||
| > type t = (module S [@inner])[@outer] | ||
| > | ||
| > EOF | ||
|
|
||
| $ ./id_driver.exe test.ml | ||
| module type S = sig type t end | ||
| let f ((module K) : (((module S with type t = int))[@foo ])) = () | ||
| let f ((module K) : (module S with type t = ((int)[@foo ]))) = () | ||
| let f ((module K) : (((module S with type t = ((int)[@foo ])))[@bar ])) = () | ||
| type t = (((module S))[@outer ][@inner ]) | ||
| $ ./id_driver.exe --use-compiler-pp test.ml | ||
| module type S = sig type t end | ||
| let f ((module K) : (((module S with type t = int))[@foo ])) = () | ||
| let f ((module K) : (module S with type t = ((int)[@foo ]))) = () | ||
| let f ((module K) : (((module S with type t = ((int)[@foo ])))[@bar ])) = () | ||
| type t = (((module S))[@outer ][@inner ]) | ||
|
|
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.
I'm concerned that this doesn't roundtrip very well, and this is a fact of not being able to unmix the core type attributes from the package type attributes. For example:
Has the following (summarised for clarity), AST on OCaml 5.4:
When we pass it through ppxlib (using the fixes here) we get
type t = (((module S))[@outer ][@inner ])with the following AST:Which is better than without the fix where we were just dropping attributes! But maybe is not ideal. I wonder if we shouldn't have an encoding for package types with attributes that we can use instead in order to safely preserve these attributes when we migrate back from 5.3 to 5.4 (which should be doable via
Ptyp_extensionandPexp_extension)? What do you think @NathanReb?I have added some tests in ed03c4d @dra27-js.
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.
I would avoid wrapping in an extension here since there's a valid migration (modulo attributes). If we do encode those with an extension, that means than building and preprocessing old code with new compiler won't work, which is what we're trying to avoid.
It's not the most statisfying of ways but could we split the attributes from the types and the attributes from package by inserting our own
[@ppxlib.migration.split_package_attributes]?We just add an extra attribute that everyone will ignore and when migrating back to 5.4, the migration knows to treat all attributes after this one differently.
Does that sound doable?
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.
That sounds good to me @NathanReb -- if you're happy enough I can push a commit to that effect @dra27-js.
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.
Go for it - I can double-check again, but we're not actually hitting this particular case anymore (I can possibly check against an older tree if it would helpful to test it against "real" code that's hitting it?)