Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 40e4c93

Browse files
committed
Kotlin: TODO() now works
1 parent 669fe61 commit 40e4c93

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

java/ql/test/kotlin/library-tests/exprs/exprs.expected

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -593,6 +593,7 @@
593593
| exprs.kt:210:9:210:39 | d1 | exprs.kt:200:5:211:5 | x | LocalVariableDeclExpr |
594594
| exprs.kt:210:24:210:39 | valueOf(...) | exprs.kt:200:5:211:5 | x | MethodAccess |
595595
| exprs.kt:210:33:210:37 | GREEN | exprs.kt:200:5:211:5 | x | StringLiteral |
596+
| exprs.kt:215:5:215:10 | TODO(...) | exprs.kt:214:1:216:1 | todo | MethodAccess |
596597
| file://:0:0:0:0 | C | exprs.kt:143:5:143:33 | foo | TypeAccess |
597598
| file://:0:0:0:0 | Color | exprs.kt:172:6:176:1 | Color | TypeAccess |
598599
| file://:0:0:0:0 | Direction | exprs.kt:168:6:170:1 | Direction | TypeAccess |

java/ql/test/kotlin/library-tests/exprs/exprs.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,5 +212,5 @@ class Class2 {
212212
}
213213

214214
fun todo() {
215-
// TODO: TODO()
215+
TODO()
216216
}

0 commit comments

Comments
 (0)