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
|
// FILE: main.kt
|
||||||
open class A<T> : Collection<T> {
|
open class A<T> : Collection<T> {
|
||||||
override val size: Int
|
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 {
|
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 {
|
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 {
|
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> {
|
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
|
// 'add(Int; Object)' method must be present in C though it has supeclass that is subclass of List
|
||||||
class C<F> : B<F>() {
|
class C<F> : B<F>() {
|
||||||
override fun get(index: Int): 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 {
|
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 {
|
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> {
|
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> {
|
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> {
|
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
|
// FILE: main.kt
|
||||||
open class A<T> : Collection<T> {
|
open class A<T> : Collection<T> {
|
||||||
override val size: Int
|
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 {
|
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 {
|
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 {
|
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> {
|
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
|
package test
|
||||||
open class A<T> : Collection<T> {
|
open class A<T> : Collection<T> {
|
||||||
override val size: Int
|
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 {
|
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 {
|
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 {
|
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> {
|
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
|
// 'remove(Int)' method must be present in C though it has supeclass that is subclass of List
|
||||||
class C<F> : B<F>() {
|
class C<F> : B<F>() {
|
||||||
override fun get(index: Int): 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 {
|
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 {
|
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> {
|
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> {
|
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> {
|
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> {
|
open class A<T> : Collection<T> {
|
||||||
override val size: Int
|
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 {
|
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 {
|
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 {
|
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> {
|
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>()
|
open class B<E> : A<E>()
|
||||||
class C<F> : B<F>(), List<F> {
|
class C<F> : B<F>(), List<F> {
|
||||||
override fun get(index: Int): 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 {
|
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 {
|
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> {
|
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> {
|
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> {
|
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> {
|
open class A<T> : Collection<T> {
|
||||||
override val size: Int
|
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 {
|
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 {
|
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 {
|
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> {
|
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>()
|
open class B<E : CharSequence> : A<E>()
|
||||||
class C : B<CharSequence>(), List<CharSequence> {
|
class C : B<CharSequence>(), List<CharSequence> {
|
||||||
override fun get(index: Int): 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 {
|
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 {
|
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> {
|
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> {
|
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> {
|
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 {
|
class A : I {
|
||||||
override fun foo(p: Int) {
|
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 {
|
class A : I {
|
||||||
override val someVal: String?
|
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?"
|
// ELEMENT_TEXT: "override val someVal: String?"
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ interface I {
|
|||||||
|
|
||||||
class A : I {
|
class A : I {
|
||||||
override fun foo(p: Int) {
|
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 {
|
class A : I {
|
||||||
override val someVal: String?
|
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?"
|
// ELEMENT_TEXT: "override val someVal: String?"
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ interface I {
|
|||||||
|
|
||||||
class A : I {
|
class A : I {
|
||||||
override var someVar: String
|
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) {}
|
set(value) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ interface I {
|
|||||||
|
|
||||||
class A : I {
|
class A : I {
|
||||||
override suspend fun foo() {
|
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(){
|
fun<T> f(){
|
||||||
JavaClass<T>(object : Comparator<T> {
|
JavaClass<T>(object : Comparator<T> {
|
||||||
override fun compare(var1: T, var2: T): Int {
|
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() {
|
fun foo() {
|
||||||
val x: Foo = object : FooClass() {
|
val x: Foo = object : FooClass() {
|
||||||
override fun run() {
|
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 {
|
var r : Runnable = object : Runnable {
|
||||||
override fun run() {
|
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 {
|
val c: java.io.Closeable = object : Closeable {
|
||||||
override fun close() {
|
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() {
|
fun test() {
|
||||||
registerHandler(object : Handler<Message> {
|
registerHandler(object : Handler<Message> {
|
||||||
override fun handle(e: 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>) {
|
fun main(args : Array<String>) {
|
||||||
SwingUtilities.invokeLater(object : Runnable {
|
SwingUtilities.invokeLater(object : Runnable {
|
||||||
override fun run() {
|
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 {
|
class A {
|
||||||
@Parameterized.Parameters
|
@Parameterized.Parameters
|
||||||
fun data(): Collection<Array<Any>> {
|
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 {
|
class A {
|
||||||
@Before
|
@Before
|
||||||
fun setUp() {
|
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 {
|
class A {
|
||||||
@After
|
@After
|
||||||
fun tearDown() {
|
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 {
|
class A {
|
||||||
@Test
|
@Test
|
||||||
fun name() {
|
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() {
|
class A : TestCase() {
|
||||||
fun testName() {
|
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 {
|
@Test class A {
|
||||||
@DataProvider(name = "name")
|
@DataProvider(name = "name")
|
||||||
fun name(): Array<Array<Any>> {
|
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 {
|
@Test class A {
|
||||||
@BeforeMethod
|
@BeforeMethod
|
||||||
fun setUp() {
|
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 {
|
@Test class A {
|
||||||
@AfterMethod
|
@AfterMethod
|
||||||
fun tearDown() {
|
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 class A {
|
||||||
@Test
|
@Test
|
||||||
fun testName() {
|
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 {
|
class C1 : T, U {
|
||||||
override fun getFoo(): String {
|
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
|
* @see TEST
|
||||||
*/
|
*/
|
||||||
override fun foo() {
|
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 {
|
class C : T {
|
||||||
override fun foo(a: Int) {
|
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 {
|
class C(t :T) : T by t {
|
||||||
override fun bar() {
|
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 {
|
override fun equals(other: Any?): Boolean {
|
||||||
@@ -13,7 +13,7 @@ class C(t :T) : T by t {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun foo() {
|
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 {
|
override fun hashCode(): Int {
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ class C : B(), I {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun g() {
|
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 {
|
override fun hashCode(): Int {
|
||||||
|
|||||||
+1
-1
@@ -5,6 +5,6 @@ interface T {
|
|||||||
|
|
||||||
class C : T {
|
class C : T {
|
||||||
override fun Foo(): (String) -> Unit {
|
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 {
|
class C : T {
|
||||||
override fun Foo(): (String) -> Unit {
|
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 {
|
fun some() : A {
|
||||||
return object : A {
|
return object : A {
|
||||||
override val method: () -> Unit?
|
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 {
|
class TraitImpl : Trait {
|
||||||
override fun <A, B : Runnable, E : Map.Entry<A, B>> foo() where B : Cloneable, B : Comparable<B> {
|
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> {
|
class SomeOther<S> : Some<S> {
|
||||||
override fun someFoo() {
|
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 {
|
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 {
|
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> {
|
class GC() : G<Int> {
|
||||||
override fun foo(t: Int): 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> {
|
class MyClass<A: Comparable<A>> : Iterable<A> {
|
||||||
override fun iterator(): Iterator<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() {
|
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 {
|
class Test : A {
|
||||||
override fun a1() {
|
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 a2() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a3() {
|
override fun a3() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a4() {
|
override fun a4() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a5() {
|
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 a6() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a7() {
|
override fun a7() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a8() {
|
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() {
|
override fun a7() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a8() {
|
override fun a8() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a1() {
|
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 a2() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a3() {
|
override fun a3() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a4() {
|
override fun a4() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a5() {
|
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() {
|
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 a6() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a7() {
|
override fun a7() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a8() {
|
override fun a8() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a1() {
|
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 a2() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a3() {
|
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() {
|
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 a2() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a3() {
|
override fun a3() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a4() {
|
override fun a4() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a5() {
|
override fun a5() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun bar() {
|
fun bar() {
|
||||||
@@ -39,11 +39,11 @@ class Test : A {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun a7() {
|
override fun a7() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a8() {
|
override fun a8() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun baz() {
|
fun baz() {
|
||||||
|
|||||||
+8
-8
@@ -17,43 +17,43 @@ interface B {
|
|||||||
|
|
||||||
class Test : A, B {
|
class Test : A, B {
|
||||||
override fun a1() {
|
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 a2() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a3() {
|
override fun a3() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a4() {
|
override fun a4() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a5() {
|
override fun a5() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun b3() {
|
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 b2() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun b1() {
|
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 a6() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a7() {
|
override fun a7() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun a8() {
|
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 {
|
class C : (String) -> Boolean {
|
||||||
override fun invoke(p1: 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() {
|
class C : A() {
|
||||||
override fun foo(x: MutableList<Any?>?, y: String?): B<*> {
|
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 {
|
class Impl: B {
|
||||||
override fun foo(r: Runnable?) {
|
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 {
|
class Impl(): Intf {
|
||||||
override fun getFooBar(): String {
|
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 {
|
class Impl(): Intf {
|
||||||
override fun fooBar(i: Int, s: Array<out String>?, foo: Any?) {
|
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>() {
|
object : C<R>() {
|
||||||
override fun f(a: 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 {
|
class C : A(), B {
|
||||||
override fun bar() {
|
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 {
|
override fun equals(other: Any?): Boolean {
|
||||||
|
|||||||
+1
-1
@@ -4,6 +4,6 @@ interface IBase {
|
|||||||
|
|
||||||
class C : IBase {
|
class C : IBase {
|
||||||
override fun foo(): Any? {
|
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 {
|
class B : A {
|
||||||
override fun String.foo() {
|
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() {
|
class B: A() {
|
||||||
override fun Int.foo(): Int {
|
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 {
|
class B : A {
|
||||||
override val String.prop: Int
|
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 {
|
class B : A {
|
||||||
override var Int.foo: Double
|
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) {}
|
set(value) {}
|
||||||
}
|
}
|
||||||
|
|||||||
+8
-8
@@ -11,19 +11,19 @@ interface T {
|
|||||||
|
|
||||||
class C : T {
|
class C : T {
|
||||||
override val a1: Byte
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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 {
|
class B : A {
|
||||||
override fun foo(): MutableList<String> {
|
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() {
|
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 {
|
class GC() : T {
|
||||||
override val v: Int
|
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 {
|
class SomeTest : Test {
|
||||||
val hello = 12
|
val hello = 12
|
||||||
override fun test() {
|
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
|
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
|
* test
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import lib.ArrayFactory
|
|||||||
|
|
||||||
public class Impl : ArrayFactory {
|
public class Impl : ArrayFactory {
|
||||||
override fun create(): lib.Array {
|
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 {
|
class Derived : Base {
|
||||||
override fun foo(c: C<*>) {
|
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() {
|
override fun i() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun i1() {
|
override fun i1() {
|
||||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
TODO("Not yet implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun i2() {
|
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 {
|
override fun toString(): String {
|
||||||
|
|||||||
@@ -4,6 +4,6 @@ interface I {
|
|||||||
|
|
||||||
class C : I {
|
class C : I {
|
||||||
override suspend fun foo() {
|
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> {
|
class GC<T>() : G<T> {
|
||||||
override fun foo(t: T): 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 {
|
class SomeOther : Some {
|
||||||
override fun foo(some: Int?): Int {
|
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> {
|
class X : A<String, UnresolvedType, Unit> {
|
||||||
override fun install(pipeline: String, configure: 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() {
|
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
|
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
|
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
|
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) {
|
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
|
var Owner.p: Int
|
||||||
get() = 1
|
get() = 1
|
||||||
set(value) {
|
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
|
var Owner.p: Int
|
||||||
get() { return 1 }
|
get() { return 1 }
|
||||||
set(value) {
|
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
|
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) {}
|
set(v) {}
|
||||||
|
|||||||
+1
-1
@@ -8,6 +8,6 @@ enum class E : T<Int> {
|
|||||||
A, B, C;
|
A, B, C;
|
||||||
|
|
||||||
override fun foo(x: Int): 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,6 +8,6 @@ enum class E : T<Int> {
|
|||||||
A, B, C;
|
A, B, C;
|
||||||
|
|
||||||
override fun foo(x: Int): 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>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Vendored
+1
-1
@@ -11,6 +11,6 @@ enum class E : T<Int> {
|
|||||||
|
|
||||||
fun baz() = 2
|
fun baz() = 2
|
||||||
override fun foo(x: Int): 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>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+3
-3
@@ -3,15 +3,15 @@
|
|||||||
enum class E {
|
enum class E {
|
||||||
A {
|
A {
|
||||||
override fun foo(x: Int): Int {
|
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 {
|
}, B {
|
||||||
override fun foo(x: Int): Int {
|
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 {
|
}, C {
|
||||||
override fun foo(x: Int): 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>
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -3,15 +3,15 @@
|
|||||||
enum class E(n: Int) {
|
enum class E(n: Int) {
|
||||||
A(1) {
|
A(1) {
|
||||||
override fun foo(x: Int): Int {
|
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) {
|
}, B(2) {
|
||||||
override fun foo(x: Int): Int {
|
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) {
|
}, C(3) {
|
||||||
override fun foo(x: Int): 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>
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -6,14 +6,14 @@ interface T<X> {
|
|||||||
|
|
||||||
class U : T<String> {
|
class U : T<String> {
|
||||||
override fun foo(x: String): 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> {
|
class V : T<Int> {
|
||||||
override fun foo(x: Int): 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;
|
A, B, C;
|
||||||
|
|
||||||
override val foo: 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
@@ -8,5 +8,5 @@ enum class E : T<Int> {
|
|||||||
A, B, C;
|
A, B, C;
|
||||||
|
|
||||||
override val foo: 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>
|
||||||
}
|
}
|
||||||
Vendored
+1
-1
@@ -11,5 +11,5 @@ enum class E : T<Int> {
|
|||||||
|
|
||||||
fun baz() = 2
|
fun baz() = 2
|
||||||
override val foo: 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>
|
||||||
}
|
}
|
||||||
+3
-3
@@ -3,13 +3,13 @@
|
|||||||
enum class E {
|
enum class E {
|
||||||
A {
|
A {
|
||||||
override val foo: Int
|
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 {
|
}, B {
|
||||||
override val foo: Int
|
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 {
|
}, C {
|
||||||
override val foo: Int
|
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
|
abstract val foo: Int
|
||||||
|
|||||||
+3
-3
@@ -3,13 +3,13 @@
|
|||||||
enum class E(n: Int) {
|
enum class E(n: Int) {
|
||||||
A(1) {
|
A(1) {
|
||||||
override val foo: Int
|
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) {
|
}, B(2) {
|
||||||
override val foo: Int
|
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) {
|
}, C(3) {
|
||||||
override val foo: 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>
|
||||||
};
|
};
|
||||||
|
|
||||||
abstract val foo: Int
|
abstract val foo: Int
|
||||||
|
|||||||
+2
-2
@@ -6,13 +6,13 @@ interface T<X> {
|
|||||||
|
|
||||||
class U : T<String> {
|
class U : T<String> {
|
||||||
override val foo: 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> {
|
class V : T<Int> {
|
||||||
override val foo: 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) {
|
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 class My {
|
||||||
actual fun foo(param: String): Int {
|
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> {
|
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 {
|
actual class My {
|
||||||
fun foo(param: String) = 42
|
fun foo(param: String) = 42
|
||||||
actual fun foo(param: Int): Int {
|
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 class <caret>My(actual val name: String) {
|
||||||
actual val age: 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 correct = true
|
||||||
actual val x: String
|
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
|
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
|
// DISABLE-ERRORS
|
||||||
actual class <caret>F<T> {
|
actual class <caret>F<T> {
|
||||||
actual val a: List<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
|
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 {
|
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
|
// DISABLE-ERRORS
|
||||||
actual class <caret>F {
|
actual class <caret>F {
|
||||||
actual val b: Int
|
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
|
val z: Double = 3.14
|
||||||
|
|
||||||
actual constructor(x: Int, s: String) {
|
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
|
// Abstract: to be implemented
|
||||||
actual abstract class <caret>Abstract {
|
actual abstract class <caret>Abstract {
|
||||||
actual fun foo(param: String): Int {
|
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 abstract fun String.bar(y: Double): Boolean
|
||||||
actual val isGood: 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
|
actual abstract var status: Int
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,24 +1,24 @@
|
|||||||
// My: to be implemented
|
// My: to be implemented
|
||||||
actual class My {
|
actual class My {
|
||||||
actual fun foo(param: String): Int {
|
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 {
|
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 fun baz() {
|
||||||
}
|
}
|
||||||
|
|
||||||
actual constructor(flag: Boolean) {
|
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
|
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
|
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) {}
|
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