-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
comparison
exprs
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,9 @@ Language changes | |
* `A <: B` is parsed as `Expr(:(<:), :A, :B)` in all cases ([#9503]). This also applies to the | ||
`>:` operator. | ||
|
||
* Simple 2-argument comparisons like `A < B` are parsed as calls intead of using the | ||
`:comparison` expression type. | ||
|
||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
JeffBezanson
Author
Member
|
||
Command-line option changes | ||
--------------------------- | ||
|
||
|
What is the rationale for having 2 separate ast representations for comparison (2arg vs 3+args)?
It broke Lint.jl, so I noticed. I had to duplicate
:call
with comparison op as special cases of:comparison
nodes lint logic. it's okay.