j2k: flatten test cases and testData directory structure
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
//class
|
||||
abstract interface I {}
|
||||
@@ -0,0 +1 @@
|
||||
trait I
|
||||
@@ -0,0 +1,2 @@
|
||||
//class
|
||||
interface A {}
|
||||
@@ -0,0 +1 @@
|
||||
trait A
|
||||
@@ -0,0 +1,2 @@
|
||||
//class
|
||||
interface A extends I0, I1, I2 {}
|
||||
@@ -0,0 +1 @@
|
||||
trait A : I0, I1, I2
|
||||
@@ -0,0 +1,2 @@
|
||||
//class
|
||||
interface A extends I {}
|
||||
@@ -0,0 +1 @@
|
||||
trait A : I
|
||||
@@ -0,0 +1,2 @@
|
||||
//class
|
||||
interface INode {String IN = "in";String AT = "@";String COMMA_WITH_SPACE = COMMA + SPACE;}
|
||||
@@ -0,0 +1,7 @@
|
||||
trait INode {
|
||||
class object {
|
||||
public val IN: String = "in"
|
||||
public val AT: String = "@"
|
||||
public val COMMA_WITH_SPACE: String = COMMA + SPACE
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
//class
|
||||
interface INode {Tag getTag();String toKotlin();}
|
||||
@@ -0,0 +1,4 @@
|
||||
trait INode {
|
||||
public fun getTag(): Tag
|
||||
public fun toKotlin(): String
|
||||
}
|
||||
@@ -0,0 +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;}
|
||||
@@ -0,0 +1,7 @@
|
||||
public trait INode {
|
||||
class object {
|
||||
public val IN: String = "in"
|
||||
public val AT: String = "@"
|
||||
public val COMMA_WITH_SPACE: String = COMMA + SPACE
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
//class
|
||||
interface Test {}
|
||||
@@ -0,0 +1 @@
|
||||
trait Test
|
||||
@@ -0,0 +1,2 @@
|
||||
//class
|
||||
private interface Test {}
|
||||
@@ -0,0 +1 @@
|
||||
private trait Test
|
||||
@@ -0,0 +1,2 @@
|
||||
//class
|
||||
protected interface Test {}
|
||||
@@ -0,0 +1 @@
|
||||
protected trait Test
|
||||
@@ -0,0 +1,2 @@
|
||||
//class
|
||||
public interface Test {}
|
||||
@@ -0,0 +1 @@
|
||||
public trait Test
|
||||
Reference in New Issue
Block a user