Remove comments from function/property implementation template
#KT-18539 Fixed
This commit is contained in:
@@ -11,22 +11,22 @@ public abstract class B<E> extends A<E> implements L<E> {
|
||||
// FILE: main.kt
|
||||
open class A<T> : Collection<T> {
|
||||
override val size: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
|
||||
override fun contains(element: T): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun containsAll(elements: Collection<T>): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun isEmpty(): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun iterator(): Iterator<T> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,27 +35,27 @@ interface L<Q> : List<Q>
|
||||
// 'add(Int; Object)' method must be present in C though it has supeclass that is subclass of List
|
||||
class C<F> : B<F>() {
|
||||
override fun get(index: Int): F {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun indexOf(element: F): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun lastIndexOf(element: F): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun listIterator(): ListIterator<F> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun listIterator(index: Int): ListIterator<F> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun subList(fromIndex: Int, toIndex: Int): List<F> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -12,22 +12,22 @@ public class B<E> extends A<E> {
|
||||
// FILE: main.kt
|
||||
open class A<T> : Collection<T> {
|
||||
override val size: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
|
||||
override fun contains(element: T): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun containsAll(elements: Collection<T>): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun isEmpty(): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun iterator(): Iterator<T> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+11
-11
@@ -11,22 +11,22 @@ public abstract class B<E> extends A<E> implements L<E> {
|
||||
package test
|
||||
open class A<T> : Collection<T> {
|
||||
override val size: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
|
||||
override fun contains(element: T): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun containsAll(elements: Collection<T>): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun isEmpty(): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun iterator(): Iterator<T> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,26 +35,26 @@ interface L<Q> : List<Q>
|
||||
// 'remove(Int)' method must be present in C though it has supeclass that is subclass of List
|
||||
class C<F> : B<F>() {
|
||||
override fun get(index: Int): F {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun indexOf(element: F): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun lastIndexOf(element: F): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun listIterator(): ListIterator<F> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun listIterator(index: Int): ListIterator<F> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun subList(fromIndex: Int, toIndex: Int): List<F> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
+11
-11
@@ -2,48 +2,48 @@
|
||||
|
||||
open class A<T> : Collection<T> {
|
||||
override val size: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
|
||||
override fun contains(element: T): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun containsAll(elements: Collection<T>): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun isEmpty(): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun iterator(): Iterator<T> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
open class B<E> : A<E>()
|
||||
class C<F> : B<F>(), List<F> {
|
||||
override fun get(index: Int): F {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun indexOf(element: F): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun lastIndexOf(element: F): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun listIterator(): ListIterator<F> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun listIterator(index: Int): ListIterator<F> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun subList(fromIndex: Int, toIndex: Int): List<F> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
+11
-11
@@ -2,48 +2,48 @@
|
||||
|
||||
open class A<T> : Collection<T> {
|
||||
override val size: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
|
||||
override fun contains(element: T): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun containsAll(elements: Collection<T>): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun isEmpty(): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun iterator(): Iterator<T> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
open class B<E : CharSequence> : A<E>()
|
||||
class C : B<CharSequence>(), List<CharSequence> {
|
||||
override fun get(index: Int): CharSequence {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun indexOf(element: CharSequence): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun lastIndexOf(element: CharSequence): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun listIterator(): ListIterator<CharSequence> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun listIterator(index: Int): ListIterator<CharSequence> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun subList(fromIndex: Int, toIndex: Int): List<CharSequence> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ interface I {
|
||||
|
||||
class A : I {
|
||||
override fun foo(p: Int) {
|
||||
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ interface I {
|
||||
|
||||
class A : I {
|
||||
override val someVal: String?
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
// ELEMENT_TEXT: "override val someVal: String?"
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ interface I {
|
||||
|
||||
class A : I {
|
||||
override fun foo(p: Int) {
|
||||
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ interface I {
|
||||
|
||||
class A : I {
|
||||
override val someVal: String?
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
// ELEMENT_TEXT: "override val someVal: String?"
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ interface I {
|
||||
|
||||
class A : I {
|
||||
override var someVar: String
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
set(value) {}
|
||||
}
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ interface I {
|
||||
|
||||
class A : I {
|
||||
override suspend fun foo() {
|
||||
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
fun<T> f(){
|
||||
JavaClass<T>(object : Comparator<T> {
|
||||
override fun compare(var1: T, var2: T): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ import test.foo.FooClass
|
||||
fun foo() {
|
||||
val x: Foo = object : FooClass() {
|
||||
override fun run() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
var r : Runnable = object : Runnable {
|
||||
override fun run() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ import java.io.Closeable
|
||||
|
||||
val c: java.io.Closeable = object : Closeable {
|
||||
override fun close() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ fun registerHandler(handler: Handler<out Message>) {}
|
||||
fun test() {
|
||||
registerHandler(object : Handler<Message> {
|
||||
override fun handle(e: Message) {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ import javax.swing.SwingUtilities
|
||||
fun main(args : Array<String>) {
|
||||
SwingUtilities.invokeLater(object : Runnable {
|
||||
override fun run() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
@@ -1 +1 @@
|
||||
TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
+1
-1
@@ -6,6 +6,6 @@ import org.junit.runners.Parameterized
|
||||
class A {
|
||||
@Parameterized.Parameters
|
||||
fun data(): Collection<Array<Any>> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,6 +6,6 @@ import org.junit.Before
|
||||
class A {
|
||||
@Before
|
||||
fun setUp() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,6 +6,6 @@ import org.junit.After
|
||||
class A {
|
||||
@After
|
||||
fun tearDown() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,6 +6,6 @@ import org.junit.Test
|
||||
class A {
|
||||
@Test
|
||||
fun name() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -4,6 +4,6 @@ import junit.framework.TestCase
|
||||
|
||||
class A : TestCase() {
|
||||
fun testName() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,6 +6,6 @@ import org.testng.annotations.Test
|
||||
@Test class A {
|
||||
@DataProvider(name = "name")
|
||||
fun name(): Array<Array<Any>> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,6 +6,6 @@ import org.testng.annotations.Test
|
||||
@Test class A {
|
||||
@BeforeMethod
|
||||
fun setUp() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,6 +6,6 @@ import org.testng.annotations.Test
|
||||
@Test class A {
|
||||
@AfterMethod
|
||||
fun tearDown() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -5,6 +5,6 @@ import org.testng.annotations.Test
|
||||
@Test class A {
|
||||
@Test
|
||||
fun testName() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
Vendored
+1
-1
@@ -8,6 +8,6 @@ interface U {
|
||||
|
||||
class C1 : T, U {
|
||||
override fun getFoo(): String {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
@@ -11,6 +11,6 @@ class B : A() {
|
||||
* @see TEST
|
||||
*/
|
||||
override fun foo() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,6 @@ interface T {
|
||||
|
||||
class C : T {
|
||||
override fun foo(a: Int) {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
@@ -5,7 +5,7 @@ interface T {
|
||||
|
||||
class C(t :T) : T by t {
|
||||
override fun bar() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
override fun equals(other: Any?): Boolean {
|
||||
@@ -13,7 +13,7 @@ class C(t :T) : T by t {
|
||||
}
|
||||
|
||||
override fun foo() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
|
||||
@@ -23,7 +23,7 @@ class C : B(), I {
|
||||
}
|
||||
|
||||
override fun g() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
|
||||
+1
-1
@@ -5,6 +5,6 @@ interface T {
|
||||
|
||||
class C : T {
|
||||
override fun Foo(): (String) -> Unit {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,6 @@ interface T {
|
||||
|
||||
class C : T {
|
||||
override fun Foo(): (String) -> Unit {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,7 @@ interface A {
|
||||
fun some() : A {
|
||||
return object : A {
|
||||
override val method: () -> Unit?
|
||||
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -4,6 +4,6 @@ interface Trait {
|
||||
|
||||
class TraitImpl : Trait {
|
||||
override fun <A, B : Runnable, E : Map.Entry<A, B>> foo() where B : Cloneable, B : Comparable<B> {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
@@ -8,14 +8,14 @@ interface Some<T> {
|
||||
|
||||
class SomeOther<S> : Some<S> {
|
||||
override fun someFoo() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
override fun someGenericFoo(): S {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun someOtherFoo(): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,6 @@ interface G<T> {
|
||||
|
||||
class GC() : G<Int> {
|
||||
override fun foo(t: Int): Int {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@
|
||||
|
||||
class MyClass<A: Comparable<A>> : Iterable<A> {
|
||||
override fun iterator(): Iterator<A> {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -7,6 +7,6 @@ class A : Runnable {
|
||||
}
|
||||
|
||||
override fun run() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
+6
-6
@@ -11,32 +11,32 @@ interface A {
|
||||
|
||||
class Test : A {
|
||||
override fun a1() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
override fun a2() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a3() {
|
||||
}
|
||||
|
||||
override fun a4() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a5() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a6() {
|
||||
}
|
||||
|
||||
override fun a7() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a8() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
+6
-6
@@ -14,29 +14,29 @@ class Test : A {
|
||||
}
|
||||
|
||||
override fun a7() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a8() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a1() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
override fun a2() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a3() {
|
||||
}
|
||||
|
||||
override fun a4() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a5() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
+5
-5
@@ -14,28 +14,28 @@ class Test : A {
|
||||
}
|
||||
|
||||
override fun a5() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a6() {
|
||||
}
|
||||
|
||||
override fun a7() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a8() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a1() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
override fun a2() {
|
||||
}
|
||||
|
||||
override fun a3() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
+6
-6
@@ -14,22 +14,22 @@ class Test : A {
|
||||
}
|
||||
|
||||
override fun a1() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
override fun a2() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a3() {
|
||||
}
|
||||
|
||||
override fun a4() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a5() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
fun bar() {
|
||||
@@ -39,11 +39,11 @@ class Test : A {
|
||||
}
|
||||
|
||||
override fun a7() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a8() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
fun baz() {
|
||||
|
||||
+8
-8
@@ -17,43 +17,43 @@ interface B {
|
||||
|
||||
class Test : A, B {
|
||||
override fun a1() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
override fun a2() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a3() {
|
||||
}
|
||||
|
||||
override fun a4() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a5() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun b3() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun b2() {
|
||||
}
|
||||
|
||||
override fun b1() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a6() {
|
||||
}
|
||||
|
||||
override fun a7() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun a8() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
class C : (String) -> Boolean {
|
||||
override fun invoke(p1: String): Boolean {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -3,6 +3,6 @@ import foo.B
|
||||
|
||||
class C : A() {
|
||||
override fun foo(x: MutableList<Any?>?, y: String?): B<*> {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package foo
|
||||
|
||||
class Impl: B {
|
||||
override fun foo(r: Runnable?) {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ import foo.Intf
|
||||
|
||||
class Impl(): Intf {
|
||||
override fun getFooBar(): String {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ import foo.Intf
|
||||
|
||||
class Impl(): Intf {
|
||||
override fun fooBar(i: Int, s: Array<out String>?, foo: Any?) {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ fun f() {
|
||||
|
||||
object : C<R>() {
|
||||
override fun f(a: R) {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ interface B {
|
||||
|
||||
class C : A(), B {
|
||||
override fun bar() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
override fun equals(other: Any?): Boolean {
|
||||
|
||||
+1
-1
@@ -4,6 +4,6 @@ interface IBase {
|
||||
|
||||
class C : IBase {
|
||||
override fun foo(): Any? {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -4,6 +4,6 @@ interface A {
|
||||
|
||||
class B : A {
|
||||
override fun String.foo() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,6 +6,6 @@ open class A {
|
||||
|
||||
class B: A() {
|
||||
override fun Int.foo(): Int {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -4,5 +4,5 @@ interface A {
|
||||
|
||||
class B : A {
|
||||
override val String.prop: Int
|
||||
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
+1
-1
@@ -4,6 +4,6 @@ interface A {
|
||||
|
||||
class B : A {
|
||||
override var Int.foo: Double
|
||||
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <selection><caret>TODO("Not yet implemented")</selection>
|
||||
set(value) {}
|
||||
}
|
||||
|
||||
+8
-8
@@ -11,19 +11,19 @@ interface T {
|
||||
|
||||
class C : T {
|
||||
override val a1: Byte
|
||||
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <selection><caret>TODO("Not yet implemented")</selection>
|
||||
override val a2: Short
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
override val a3: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
override val a4: Long
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
override val a5: Float
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
override val a6: Double
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
override val a7: Char
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
override val a8: Boolean
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
}
|
||||
+1
-1
@@ -2,6 +2,6 @@ import foo.A
|
||||
|
||||
class B : A {
|
||||
override fun foo(): MutableList<String> {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -20,6 +20,6 @@ class C : A(), I {
|
||||
}
|
||||
|
||||
override fun z() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,5 +4,5 @@ interface T {
|
||||
|
||||
class GC() : T {
|
||||
override val v: Int
|
||||
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
@@ -6,11 +6,11 @@ interface Test {
|
||||
class SomeTest : Test {
|
||||
val hello = 12
|
||||
override fun test() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
override val testProp: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
|
||||
/**
|
||||
* test
|
||||
|
||||
@@ -3,7 +3,7 @@ import lib.ArrayFactory
|
||||
|
||||
public class Impl : ArrayFactory {
|
||||
override fun create(): lib.Array {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -6,6 +6,6 @@ interface Base {
|
||||
|
||||
class Derived : Base {
|
||||
override fun foo(c: C<*>) {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
@@ -30,15 +30,15 @@ abstract class B : I2, A(), I3 {
|
||||
}
|
||||
|
||||
override fun i() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun i1() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun i2() {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
|
||||
@@ -4,6 +4,6 @@ interface I {
|
||||
|
||||
class C : I {
|
||||
override suspend fun foo() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,6 @@ interface G<T> {
|
||||
|
||||
class GC<T>() : G<T> {
|
||||
override fun foo(t: T): T {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,6 @@ interface Some {
|
||||
|
||||
class SomeOther : Some {
|
||||
override fun foo(some: Int?): Int {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,6 @@ interface A<in TPipeline, out TBuilder : Any, TFeature : Any> {
|
||||
|
||||
class X : A<String, UnresolvedType, Unit> {
|
||||
override fun install(pipeline: String, configure: UnresolvedType.() -> Unit) {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -3,5 +3,5 @@ abstract class Owner {
|
||||
}
|
||||
|
||||
fun Owner.f() {
|
||||
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
+1
-1
@@ -3,4 +3,4 @@ abstract class Owner {
|
||||
}
|
||||
|
||||
val Owner.p: Int
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
Vendored
+1
-1
@@ -4,4 +4,4 @@ class Owner {
|
||||
}
|
||||
|
||||
val Owner.p: Int
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
|
||||
+2
-2
@@ -4,7 +4,7 @@ class Owner {
|
||||
}
|
||||
|
||||
var Owner.p: Int
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
set(value) {
|
||||
TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -6,5 +6,5 @@ class Owner {
|
||||
var Owner.p: Int
|
||||
get() = 1
|
||||
set(value) {
|
||||
<caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,5 +6,5 @@ class Owner {
|
||||
var Owner.p: Int
|
||||
get() { return 1 }
|
||||
set(value) {
|
||||
<caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
+1
-1
@@ -5,5 +5,5 @@ class Owner {
|
||||
}
|
||||
|
||||
var Owner.p: Int
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
set(v) {}
|
||||
|
||||
+1
-1
@@ -8,6 +8,6 @@ enum class E : T<Int> {
|
||||
A, B, C;
|
||||
|
||||
override fun foo(x: Int): Int {
|
||||
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -8,6 +8,6 @@ enum class E : T<Int> {
|
||||
A, B, C;
|
||||
|
||||
override fun foo(x: Int): Int {
|
||||
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
Vendored
+1
-1
@@ -11,6 +11,6 @@ enum class E : T<Int> {
|
||||
|
||||
fun baz() = 2
|
||||
override fun foo(x: Int): Int {
|
||||
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
+3
-3
@@ -3,15 +3,15 @@
|
||||
enum class E {
|
||||
A {
|
||||
override fun foo(x: Int): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}, B {
|
||||
override fun foo(x: Int): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}, C {
|
||||
override fun foo(x: Int): Int {
|
||||
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
+3
-3
@@ -3,15 +3,15 @@
|
||||
enum class E(n: Int) {
|
||||
A(1) {
|
||||
override fun foo(x: Int): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}, B(2) {
|
||||
override fun foo(x: Int): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}, C(3) {
|
||||
override fun foo(x: Int): Int {
|
||||
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
+2
-2
@@ -6,14 +6,14 @@ interface T<X> {
|
||||
|
||||
class U : T<String> {
|
||||
override fun foo(x: String): String {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class V : T<Int> {
|
||||
override fun foo(x: Int): Int {
|
||||
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
<caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -8,5 +8,5 @@ enum class E : T<Int> {
|
||||
A, B, C;
|
||||
|
||||
override val foo: Int
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
+1
-1
@@ -8,5 +8,5 @@ enum class E : T<Int> {
|
||||
A, B, C;
|
||||
|
||||
override val foo: Int
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
Vendored
+1
-1
@@ -11,5 +11,5 @@ enum class E : T<Int> {
|
||||
|
||||
fun baz() = 2
|
||||
override val foo: Int
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
+3
-3
@@ -3,13 +3,13 @@
|
||||
enum class E {
|
||||
A {
|
||||
override val foo: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
}, B {
|
||||
override val foo: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
}, C {
|
||||
override val foo: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
};
|
||||
|
||||
abstract val foo: Int
|
||||
|
||||
+3
-3
@@ -3,13 +3,13 @@
|
||||
enum class E(n: Int) {
|
||||
A(1) {
|
||||
override val foo: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
}, B(2) {
|
||||
override val foo: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
}, C(3) {
|
||||
override val foo: Int
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
};
|
||||
|
||||
abstract val foo: Int
|
||||
|
||||
+2
-2
@@ -6,13 +6,13 @@ interface T<X> {
|
||||
|
||||
class U : T<String> {
|
||||
override val foo: String
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
|
||||
}
|
||||
|
||||
class V : T<Int> {
|
||||
override val foo: Int
|
||||
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
||||
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -4,5 +4,5 @@ interface A {
|
||||
}
|
||||
|
||||
fun A.foo(n: Int) {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
+1
-1
@@ -3,6 +3,6 @@
|
||||
|
||||
actual class My {
|
||||
actual fun foo(param: String): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -7,6 +7,6 @@ actual object O {
|
||||
}
|
||||
|
||||
actual fun <T : Any> hello(): MutableMap<String, T> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
Vendored
+1
-1
@@ -4,6 +4,6 @@
|
||||
actual class My {
|
||||
fun foo(param: String) = 42
|
||||
actual fun foo(param: Int): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
idea/testData/multiModuleQuickFix/addMissingActualMembers/classPropertyInConstructor/jvm/My.kt.after
Vendored
+1
-1
@@ -3,5 +3,5 @@
|
||||
|
||||
actual class <caret>My(actual val name: String) {
|
||||
actual val age: String
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
}
|
||||
Vendored
+2
-2
@@ -6,7 +6,7 @@ actual class <caret>My {
|
||||
|
||||
actual val correct = true
|
||||
actual val x: String
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
actual val pi: Double
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
Vendored
+3
-3
@@ -4,11 +4,11 @@
|
||||
// DISABLE-ERRORS
|
||||
actual class <caret>F<T> {
|
||||
actual val a: List<T>
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
actual val b: T
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
|
||||
actual fun <F> c(t: T): F {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
Vendored
+1
-1
@@ -4,5 +4,5 @@
|
||||
// DISABLE-ERRORS
|
||||
actual class <caret>F {
|
||||
actual val b: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
}
|
||||
+1
-1
@@ -7,6 +7,6 @@ actual class WithSecondaryConstructor {
|
||||
val z: Double = 3.14
|
||||
|
||||
actual constructor(x: Int, s: String) {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,12 +1,12 @@
|
||||
// Abstract: to be implemented
|
||||
actual abstract class <caret>Abstract {
|
||||
actual fun foo(param: String): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
actual abstract fun String.bar(y: Double): Boolean
|
||||
actual val isGood: Boolean
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
actual abstract var status: Int
|
||||
|
||||
}
|
||||
@@ -1,24 +1,24 @@
|
||||
// My: to be implemented
|
||||
actual class My {
|
||||
actual fun foo(param: String): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
actual fun String.bar(y: Double): Boolean {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
actual fun baz() {
|
||||
}
|
||||
|
||||
actual constructor(flag: Boolean) {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
actual val isGood: Boolean
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
actual var status: Int
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
get() = TODO("Not yet implemented")
|
||||
set(value) {}
|
||||
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user