Add todo comment with missing binary operators

This commit is contained in:
Tamas Vajk
2024-10-15 15:18:13 +02:00
parent 227d30243c
commit a5fcfaf289

View File

@@ -325,6 +325,7 @@ private fun KotlinFileExtractor.extractBinaryExpression(
} else if (op == KtTokens.EXCLEQEQEQ && target == null) {
extractBinaryExpression(expression, callable, parent, tw::writeExprs_neexpr)
} else {
// todo: other operators, such as .., ..<, in, !in, +=, -=, *=, /=, %=, <, >, <=, >=, ==, !=,
TODO("Extract as method call")
}
}