mirror of
https://github.com/github/codeql.git
synced 2026-04-30 03:05:15 +02:00
Fix extension property labels
This commit is contained in:
committed by
Chris Smowton
parent
25fce5f6bb
commit
fa0bd0366c
@@ -46,3 +46,5 @@ fieldDeclarations
|
||||
| properties.kt:38:5:38:34 | internalProp | properties.kt:38:14:38:34 | getInternalProp | file://:0:0:0:0 | <none> | properties.kt:38:5:38:34 | internalProp | internal |
|
||||
| properties.kt:67:1:67:23 | constVal | properties.kt:67:7:67:23 | getConstVal | file://:0:0:0:0 | <none> | properties.kt:67:1:67:23 | constVal | public |
|
||||
| properties.kt:70:5:70:16 | prop | properties.kt:70:5:70:16 | getProp | file://:0:0:0:0 | <none> | properties.kt:70:5:70:16 | prop | public |
|
||||
| properties.kt:78:1:79:13 | x | properties.kt:79:5:79:13 | getX | file://:0:0:0:0 | <none> | file://:0:0:0:0 | <none> | public |
|
||||
| properties.kt:80:1:81:13 | x | properties.kt:81:5:81:13 | getX | file://:0:0:0:0 | <none> | file://:0:0:0:0 | <none> | public |
|
||||
|
||||
@@ -73,3 +73,9 @@ class C<T> {
|
||||
println(c.prop)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
val Int.x : Int
|
||||
get() = 5
|
||||
val Double.x : Int
|
||||
get() = 5
|
||||
|
||||
Reference in New Issue
Block a user