Skip to content

Commit

Permalink
Add todo comment with missing binary operators
Browse files Browse the repository at this point in the history
  • Loading branch information
tamasvajk committed Oct 16, 2024
1 parent 5e29cd3 commit a19b5e6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
Expand Down

0 comments on commit a19b5e6

Please sign in to comment.