Initial implementation of faster component function usage search
This commit is contained in:
@@ -1,34 +0,0 @@
|
||||
// all these are unused, but have conventional names, so they won't be marked as unused
|
||||
|
||||
fun inc() {
|
||||
}
|
||||
|
||||
fun dec() {
|
||||
}
|
||||
|
||||
fun component1() {
|
||||
}
|
||||
|
||||
fun component100() {
|
||||
}
|
||||
|
||||
fun equals() {
|
||||
}
|
||||
|
||||
fun invoke() {
|
||||
}
|
||||
|
||||
fun iterator() {
|
||||
}
|
||||
|
||||
fun compareTo() {
|
||||
}
|
||||
|
||||
fun get() {
|
||||
}
|
||||
|
||||
fun set() {
|
||||
}
|
||||
|
||||
fun plusAssign() {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// all these are unused but are operators
|
||||
|
||||
operator fun String.inc() = ""
|
||||
|
||||
operator fun String.dec() = ""
|
||||
|
||||
operator fun String.component1() = 0
|
||||
|
||||
operator fun String.component100() = 0
|
||||
Reference in New Issue
Block a user