From 0d5a0b207e1cf0ee82f99fd4f386c65245a9f4f4 Mon Sep 17 00:00:00 2001 From: Zalim Bashorov Date: Mon, 23 Nov 2020 23:48:29 +0300 Subject: [PATCH] [IR] KotlinLikeDumper: add a note about some conventions used for TODO comments --- .../src/org/jetbrains/kotlin/ir/util/dumpKotlinLike.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/compiler/ir/ir.tree/src/org/jetbrains/kotlin/ir/util/dumpKotlinLike.kt b/compiler/ir/ir.tree/src/org/jetbrains/kotlin/ir/util/dumpKotlinLike.kt index 3b5c2827c44..496aa6f74bb 100644 --- a/compiler/ir/ir.tree/src/org/jetbrains/kotlin/ir/util/dumpKotlinLike.kt +++ b/compiler/ir/ir.tree/src/org/jetbrains/kotlin/ir/util/dumpKotlinLike.kt @@ -70,6 +70,11 @@ enum class FakeOverridesStrategy { NONE } +// TODO_ conventions: +// TODO support -- for unsupported nodes +// TODO no test -- for the cases with no test(s) +// it's not valid kotlin -- for the cases when used some syntax which is invalid in Kotlin, maybe they are worth to reconsider + /* TODO: * don't crash on unbound symbols * origin : class, function, property, ...