Skip to content

Commit 28fb28b

Browse files
committed
Add todo comment with missing binary operators
1 parent fc4dfbe commit 28fb28b

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

0 commit comments

Comments
 (0)