54c58671fb
Instead of searching for the operator in the string representation of
the whole expression, consider the operator's start to be the
first non-whitespace non-dot character _after_ the LHS of the infix
expression.
This fixes cases like this:
```
assert("Name in " in listOf("Hello", "World"))
| |
| [Hello, World]
false
```
^KT-66208 Fixed
35 lines
533 B
Plaintext
Vendored
35 lines
533 B
Plaintext
Vendored
Assertion failed
|
|
assert(null is String)
|
|
|
|
|
false
|
|
|
|
Assertion failed
|
|
assert(!(" is " is String))
|
|
| |
|
|
| true
|
|
false
|
|
|
|
Assertion failed
|
|
assert(!(
|
|
|
|
|
false
|
|
" is "
|
|
|
|
is
|
|
|
|
|
true
|
|
|
|
String
|
|
))
|
|
|
|
Assertion failed
|
|
assert(null/*is*/is/*is*/String)
|
|
|
|
|
false
|
|
|
|
Assertion failed
|
|
assert(!((null is String) is Boolean))
|
|
| | |
|
|
| | true
|
|
| false
|
|
false |