New J2K: Fix existing test data

This commit is contained in:
Ilya Kirillov
2018-12-01 15:55:37 +03:00
committed by Ilya Kirillov
parent 5236858c20
commit f752796408
330 changed files with 2800 additions and 60 deletions
@@ -1,2 +1,5 @@
//class
interface I0 {}
interface I1 {}
interface I2 {}
interface A extends I0, I1, I2 {}
@@ -1 +1,4 @@
internal interface I0
internal interface I1
internal interface I2
internal interface A : I0, I1, I2
+1 -1
View File
@@ -1,2 +1,2 @@
//class
interface I {}
interface A extends I {}
@@ -1 +1,2 @@
internal interface I
internal interface A : I
+1 -1
View File
@@ -1,2 +1,2 @@
//class
interface INode {String IN = "in";String AT = "@";String COMMA_WITH_SPACE = COMMA + SPACE;}
interface INode {String IN = "in";String AT = "@";String COMMA_WITH_SPACE = IN + AT;}
+1 -1
View File
@@ -2,6 +2,6 @@ internal interface INode {
companion object {
val IN = "in"
val AT = "@"
val COMMA_WITH_SPACE = COMMA + SPACE
val COMMA_WITH_SPACE = IN + AT
}
}
@@ -0,0 +1,7 @@
internal interface INode {
companion object {
const val IN = "in"
const val AT = "@"
const val COMMA_WITH_SPACE = IN + AT
}
}
@@ -0,0 +1,4 @@
internal interface INode {
val tag: Tag?
fun toKotlin(): String?
}
@@ -1,2 +1,2 @@
//class
public interface INode { public static final String IN = "in"; public static final String AT = "@"; public static final String COMMA_WITH_SPACE = COMMA + SPACE;}
public interface INode { public static final String IN = "in"; public static final String AT = "@"; public static final String COMMA_WITH_SPACE = IN + AT;}
@@ -2,6 +2,6 @@ interface INode {
companion object {
val IN = "in"
val AT = "@"
val COMMA_WITH_SPACE = COMMA + SPACE
val COMMA_WITH_SPACE = IN + AT
}
}
@@ -0,0 +1,7 @@
interface INode {
companion object {
const val IN = "in"
const val AT = "@"
const val COMMA_WITH_SPACE = IN + AT
}
}