some classes from runtime.jar are not meant to be loaded by JDR
* assert runtime implementations from JetStandard* are not loaded by JavaDescriptorResolver * fix wrong @JetMethod in jet.Iterator * fix jet.Iterator ns was created * fix incorrect number of functions and tuples in JetStandardClasses * added TODO about inconsisten Tuple class
This commit is contained in:
@@ -110,7 +110,7 @@ public final class Intrinsics {
|
||||
}
|
||||
|
||||
private void declareTuplesIntrinsics() {
|
||||
for (int tupleSize = 0; tupleSize < JetStandardClasses.TUPLE_COUNT; ++tupleSize) {
|
||||
for (int tupleSize = 0; tupleSize <= JetStandardClasses.MAX_TUPLE_ORDER; ++tupleSize) {
|
||||
declareTupleIntrinsics(tupleSize);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user