From 2822a3eee07a27495d5af4fc36304d483756d3a6 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Tue, 17 Feb 2015 12:32:17 +0100 Subject: updated according to language change: class object -> default object --- test/data/format/classWithClassObject.html | 46 ---------------------------- test/data/format/classWithClassObject.kt | 7 ----- test/data/format/classWithClassObject.md | 26 ---------------- test/data/format/classWithDefaultObject.html | 46 ++++++++++++++++++++++++++++ test/data/format/classWithDefaultObject.kt | 7 +++++ test/data/format/classWithDefaultObject.md | 26 ++++++++++++++++ 6 files changed, 79 insertions(+), 79 deletions(-) delete mode 100644 test/data/format/classWithClassObject.html delete mode 100644 test/data/format/classWithClassObject.kt delete mode 100644 test/data/format/classWithClassObject.md create mode 100644 test/data/format/classWithDefaultObject.html create mode 100644 test/data/format/classWithDefaultObject.kt create mode 100644 test/data/format/classWithDefaultObject.md (limited to 'test/data/format') diff --git a/test/data/format/classWithClassObject.html b/test/data/format/classWithClassObject.html deleted file mode 100644 index c1b18041..00000000 --- a/test/data/format/classWithClassObject.html +++ /dev/null @@ -1,46 +0,0 @@ - - -test / Klass - - -test /  / Klass
-
-

Klass

-class Klass
-
-
-

Constructors

- - - - - - - -
-<init> -public Klass()
-

Class Object Properties

- - - - - - - -
-x -val x: Int
-

Class Object Functions

- - - - - - - -
-foo -fun foo(): Unit
- - diff --git a/test/data/format/classWithClassObject.kt b/test/data/format/classWithClassObject.kt deleted file mode 100644 index 459efad6..00000000 --- a/test/data/format/classWithClassObject.kt +++ /dev/null @@ -1,7 +0,0 @@ -class Klass() { - class object { - val x = 1 - - fun foo() {} - } -} diff --git a/test/data/format/classWithClassObject.md b/test/data/format/classWithClassObject.md deleted file mode 100644 index b1191099..00000000 --- a/test/data/format/classWithClassObject.md +++ /dev/null @@ -1,26 +0,0 @@ -[test](out.md) / [](out.md) / [Klass](out.md) - - -# Klass - -`class Klass` - - - -### Constructors - - -| [<init>](out.md) | `public Klass()` | - - -### Class Object Properties - - -| [x](out.md) | `val x: Int` | - - -### Class Object Functions - - -| [foo](out.md) | `fun foo(): Unit` | - diff --git a/test/data/format/classWithDefaultObject.html b/test/data/format/classWithDefaultObject.html new file mode 100644 index 00000000..1fd648ff --- /dev/null +++ b/test/data/format/classWithDefaultObject.html @@ -0,0 +1,46 @@ + + +test / Klass + + +test /  / Klass
+
+

Klass

+class Klass
+
+
+

Constructors

+ + + + + + + +
+<init> +public Klass()
+

Default Object Properties

+ + + + + + + +
+x +val x: Int
+

Default Object Functions

+ + + + + + + +
+foo +fun foo(): Unit
+ + diff --git a/test/data/format/classWithDefaultObject.kt b/test/data/format/classWithDefaultObject.kt new file mode 100644 index 00000000..459efad6 --- /dev/null +++ b/test/data/format/classWithDefaultObject.kt @@ -0,0 +1,7 @@ +class Klass() { + class object { + val x = 1 + + fun foo() {} + } +} diff --git a/test/data/format/classWithDefaultObject.md b/test/data/format/classWithDefaultObject.md new file mode 100644 index 00000000..030d5a21 --- /dev/null +++ b/test/data/format/classWithDefaultObject.md @@ -0,0 +1,26 @@ +[test](out.md) / [](out.md) / [Klass](out.md) + + +# Klass + +`class Klass` + + + +### Constructors + + +| [<init>](out.md) | `public Klass()` | + + +### Default Object Properties + + +| [x](out.md) | `val x: Int` | + + +### Default Object Functions + + +| [foo](out.md) | `fun foo(): Unit` | + -- cgit