Support unsigned integers in intrinsic range values
This commit is contained in:
+20
@@ -18643,6 +18643,26 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/forEachIndexedInListOfUInts.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("forInUnsignedDownTo.kt")
|
||||
public void testForInUnsignedDownTo() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/forInUnsignedDownTo.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("forInUnsignedRangeLiteral.kt")
|
||||
public void testForInUnsignedRangeLiteral() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/forInUnsignedRangeLiteral.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("forInUnsignedUntil.kt")
|
||||
public void testForInUnsignedUntil() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/forInUnsignedUntil.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("inUnsignedRangeLiteral.kt")
|
||||
public void testInUnsignedRangeLiteral() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/inUnsignedRangeLiteral.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("iterateOverArrayOfUnsignedValues.kt")
|
||||
public void testIterateOverArrayOfUnsignedValues() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/iterateOverArrayOfUnsignedValues.kt");
|
||||
|
||||
+20
@@ -19693,6 +19693,26 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/forEachIndexedInListOfUInts.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("forInUnsignedDownTo.kt")
|
||||
public void testForInUnsignedDownTo() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/forInUnsignedDownTo.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("forInUnsignedRangeLiteral.kt")
|
||||
public void testForInUnsignedRangeLiteral() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/forInUnsignedRangeLiteral.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("forInUnsignedUntil.kt")
|
||||
public void testForInUnsignedUntil() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/forInUnsignedUntil.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("inUnsignedRangeLiteral.kt")
|
||||
public void testInUnsignedRangeLiteral() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/inUnsignedRangeLiteral.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("iterateOverArrayOfUnsignedValues.kt")
|
||||
public void testIterateOverArrayOfUnsignedValues() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/unsignedTypes/iterateOverArrayOfUnsignedValues.kt");
|
||||
|
||||
Reference in New Issue
Block a user