Merge ConstantExpressionEvaluator and CompileTimeConstantResolver
This commit is contained in:
@@ -17,7 +17,7 @@ fun box(): String {
|
||||
test("shortArray", shortArray(0, 1, 2, 3, 4), "0, 1, 2, 3, 4")
|
||||
test("intArray,", intArray(0, 1, 2, 3, 4), "0, 1, 2, 3, 4")
|
||||
test("longArray", longArray(0, 1, 2, 3, 4), "0, 1, 2, 3, 4")
|
||||
test("floatArray", floatArray(0.0, 1.0, 2.0, 3.0, 4.0), "0.0, 1.0, 2.0, 3.0, 4.0")
|
||||
test("floatArray", floatArray(0.0.toFloat(), 1.0.toFloat(), 2.0.toFloat(), 3.0.toFloat(), 4.0.toFloat()), "0.0, 1.0, 2.0, 3.0, 4.0")
|
||||
test("doubleArray", doubleArray(0.0, 1.1, 2.2, 3.3, 4.4), "0.0, 1.1, 2.2, 3.3, 4.4")
|
||||
}
|
||||
catch (e : Fail) {
|
||||
|
||||
Reference in New Issue
Block a user