evaluation: don't evaluate in and instanceof binary exp - fixes #2355
This commit is contained in:
parent
554fda00c1
commit
95e63fd9c9
@ -175,8 +175,6 @@ export function evaluate(): { confident: boolean; value: any } {
|
||||
case "<<": return left << right;
|
||||
case ">>": return left >> right;
|
||||
case ">>>": return left >>> right;
|
||||
case "in": return left in right;
|
||||
case "instanceof": return left instanceof right;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user