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
The interpreter has code to compare two (parse) trees in ConcreteSyntaxResult. This code works on IConstructor instances and assumes they are ITree instances
But ITree subclasses already have equals methods implemented that are much more efficient.
We should unify these implementations but keep in mind that we need to be able to compare with and without ignoring layout and keyword fields.
The text was updated successfully, but these errors were encountered:
The interpreter has code to compare two (parse) trees in
ConcreteSyntaxResult
. This code works onIConstructor
instances and assumes they areITree
instancesBut
ITree
subclasses already haveequals
methods implemented that are much more efficient.We should unify these implementations but keep in mind that we need to be able to compare with and without ignoring layout and keyword fields.
The text was updated successfully, but these errors were encountered: