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 15, 2024
1 parent b5cc50f commit 4f4dcd3
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 4f4dcd3

Please sign in to comment.