Do not show doc-comment references in data flow

This commit is contained in:
Valentin Kipyatkov
2020-04-13 12:42:16 +03:00
parent 84a786dde3
commit 06de3de1a6
8 changed files with 53 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
// FLOW: OUT
val String.<caret>foo: Int
get() = 10
/**
* Uses [foo]
*/
fun bar() {
val v = "".foo
}