mirror of
https://github.com/irmen/prog8.git
synced 2024-12-23 09:32:43 +00:00
almost forgot
This commit is contained in:
parent
a0594cbce3
commit
bcc4bf5c2b
@ -37,7 +37,8 @@ sealed class Expression: Node {
|
||||
is BinaryExpression ->
|
||||
(other is BinaryExpression && other.operator==operator
|
||||
&& other.left isSameAs left
|
||||
&& other.right isSameAs right)
|
||||
&& other.right isSameAs right
|
||||
&& other.isChainedComparison() == isChainedComparison())
|
||||
is ArrayIndexedExpression -> {
|
||||
(other is ArrayIndexedExpression && other.arrayvar.nameInSource == arrayvar.nameInSource
|
||||
&& other.indexer isSameAs indexer)
|
||||
|
Loading…
Reference in New Issue
Block a user