This commit is contained in:
Dmitry Jemerov
2016-07-19 17:57:49 +02:00
parent 3cbe28095b
commit 079d857aa2
188 changed files with 218 additions and 201 deletions
@@ -6,6 +6,6 @@ class Foo<T> {
}
private operator fun get(s: String): T {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
@@ -6,6 +6,6 @@ class Foo<T> {
}
private operator fun get(s: String, w: T): T {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
@@ -2,7 +2,7 @@
class Foo<T> {
operator fun get(s: String, w: T): T {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
@@ -2,7 +2,7 @@
class Foo<T> {
operator fun get(s: String, w: T): Any {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
@@ -10,6 +10,6 @@ class Foo<T> {
}
private operator fun <V> get(s: String, w: ArrayList<V>): String {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
@@ -6,5 +6,5 @@ fun x (y: Any) {
}
operator fun Any.get(s: String): Any {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
@@ -6,6 +6,6 @@ class Foo<T> {
}
private operator fun get(s: String): T {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
@@ -6,6 +6,6 @@ class Foo<T, S: Iterable<T>> {
}
private operator fun get(s: String): T {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
@@ -6,6 +6,6 @@ class Foo<T> {
}
private operator fun <V> get(s: String, w: Iterable<V>): T {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
@@ -8,6 +8,6 @@ class Foo<T> {
}
private operator fun <V, T1> get(s: String, w: ArrayList<V>, v: T1): T {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
@@ -8,6 +8,6 @@ class Foo<T> {
}
private operator fun get(s: String, w: T): T {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
@@ -8,6 +8,6 @@ class Foo<S> {
}
private operator fun get(s: String, w: S): S {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}