Skip to content

Commit 4f4dcd3

Browse files
committed
Add todo comment with missing binary operators
1 parent b5cc50f commit 4f4dcd3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

java/kotlin-extractor2/src/main/kotlin/entities/Expression.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ private fun KotlinFileExtractor.extractBinaryExpression(
319319
} else if (op == KtTokens.EXCLEQEQEQ && target == null) {
320320
extractBinaryExpression(expression, callable, parent, tw::writeExprs_neexpr)
321321
} else {
322+
// todo: other operators, such as .., ..<, in, !in, +=, -=, *=, /=, %=, <, >, <=, >=, ==, !=,
322323
TODO("Extract as method call")
323324
}
324325
}

0 commit comments

Comments
 (0)