Fix highlighting of TODO calls in lambdas

#KT-19915 Fixed
This commit is contained in:
Dmitry Jemerov
2017-12-19 15:46:06 +01:00
parent 0159d19539
commit 52ccfcecfc
3 changed files with 8 additions and 1 deletions
+5
View File
@@ -1,2 +1,7 @@
fun foo() = TODO("Fix me")
fun bar() = TODO()
fun baz() {
run {
TODO("Fix me in lambda")
}
}