arrays in signatures: more tests, fix bugs
This commit is contained in:
@@ -504,6 +504,14 @@ public class JetStandardLibrary {
|
||||
initStdClasses();
|
||||
return doubleArrayType;
|
||||
}
|
||||
|
||||
public JetType getPrimitiveArrayType(JetType jetType) {
|
||||
if (jetType.equals(getIntType())) {
|
||||
return getIntArrayType();
|
||||
} else {
|
||||
throw new IllegalStateException("not implemented");
|
||||
}
|
||||
}
|
||||
|
||||
public ClassDescriptor getByteArrayClass() {
|
||||
initStdClasses();
|
||||
|
||||
Reference in New Issue
Block a user