Compat for odd Exprs in long form anonymous functions#6
Merged
Conversation
62facc7 to
6ebaddb
Compare
The following construct is parsed oddly by the reference parser with the
tuple omitted from the argument list. Add a compatibility hack for that
during Expr conversion.
function (xs...)
body
end
With this we now have compatible parsing for all of the stdlib, so turn
on this test by default.
6ebaddb to
105f325
Compare
Member
Author
Not quite true for 1.8 yet, so this is disabled conditionally for now. |
c42f
added a commit
to JuliaLang/julia
that referenced
this pull request
Oct 17, 2025
…aSyntax.jl#6) The following construct is parsed oddly by the reference parser with the tuple omitted from the argument list. Add a compatibility hack for that during Expr conversion. function (xs...) body end With this we now have compatible parsing for all of the stdlib for Julia 1.6 and 1.7, so turn on this test by default in those cases.
topolarity
pushed a commit
to JuliaLang/julia
that referenced
this pull request
Nov 14, 2025
…aSyntax.jl#6) The following construct is parsed oddly by the reference parser with the tuple omitted from the argument list. Add a compatibility hack for that during Expr conversion. function (xs...) body end With this we now have compatible parsing for all of the stdlib for Julia 1.6 and 1.7, so turn on this test by default in those cases.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The following construct is parsed oddly by the reference parser with the
tuple omitted from the argument list. Add a compatibility hack for that
during Expr conversion.
With this we now have compatible parsing for all of the stdlib, so turn
on this test by default.