diff --git a/java/kotlin-extractor2/src/main/kotlin/entities/Expression.kt b/java/kotlin-extractor2/src/main/kotlin/entities/Expression.kt index 6936da2ce8684..acb29da515bff 100644 --- a/java/kotlin-extractor2/src/main/kotlin/entities/Expression.kt +++ b/java/kotlin-extractor2/src/main/kotlin/entities/Expression.kt @@ -319,6 +319,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") } }