You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Syntactically, those are the same, so I don't think the parser should distinguish them. It would be like distinguishing
mean from sd. There are semantic differences, not syntactic ones.
you don't think that since they are different operators they should have different classes in the parse data? Seeing that parser differentiates = and <- it makes sense to me that <<- would also be differentiated.
you don't think that since they are different operators they should have different classes in the parse data? Seeing that parser differentiates = and <- it makes sense to me that <<- would also be differentiated.
= has a higher priority than <-, but <<- has the same priority. = is
also used to bind values to arguments, but <- is never used for that.
It probably makes sense for a syntax highlighter to display them
differently, but it should do that based on the text value, not the
token value.
Parser does not differentiate between the double
<<-
from the single<-
.The text was updated successfully, but these errors were encountered: