-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Allow interpolation in using and export statement #11338
Conversation
Note that the test for |
Looks fine. Just needs a rebase now. |
Done. |
Allow interpolation in using and export statement
I think I'm going to have to revert this. It breaks parsing of imports like
where it now tries to parse |
I see. I'll try to fix it and submit a new one. |
I think this issue is not specific to julia> &
& (generic function with 35 methods)
julia> parse("a = &\nb")
:(a = &b)
julia> parse("a = &")
:(a = (&))
julia> a = &
& (generic function with 35 methods)
julia> a
& (generic function with 35 methods) Is this intentional and I should special case P.S. I thought you've already reverted it so I was taking my time before getting back to this..... |
And the
|
It's debatable whether |
I'm just trying not to duplicate code. OK. I can special case |
Thanks. |
…across newlines. Fix up JuliaLang#11338
…across newlines. Fix up JuliaLang#11338
…across newlines. Fix up JuliaLang#11338
This should be useful for some packages (especially for
export
). Using is probably less useful but why not....Fix #11332