|
368 | 368 |
|
369 | 369 | local ArrayEnumerator = define("System.ArrayEnumerator", function (T) |
370 | 370 | return { |
371 | | - __inherits__ = { IEnumerator_1(T) } |
| 371 | + base = { IEnumerator_1(T) } |
372 | 372 | } |
373 | 373 | end, { |
374 | 374 | getCurrent = System.getCurrent, |
|
405 | 405 |
|
406 | 406 | local ArrayReverseEnumerator = define("System.ArrayReverseEnumerator", function (T) |
407 | 407 | return { |
408 | | - __inherits__ = { IEnumerator_1(T) } |
| 408 | + base = { IEnumerator_1(T) } |
409 | 409 | } |
410 | 410 | end, { |
411 | 411 | getCurrent = System.getCurrent, |
@@ -1042,7 +1042,7 @@ end |
1042 | 1042 |
|
1043 | 1043 | System.defArray("System.Array", function(T) |
1044 | 1044 | return { |
1045 | | - __inherits__ = { System.ICloneable, System.IList_1(T), System.IReadOnlyList_1(T), System.IList }, |
| 1045 | + base = { System.ICloneable, System.IList_1(T), System.IReadOnlyList_1(T), System.IList }, |
1046 | 1046 | __genericT__ = T |
1047 | 1047 | } |
1048 | 1048 | end, Array, MultiArray) |
@@ -1074,7 +1074,7 @@ System.yield = cyield |
1074 | 1074 | local YieldEnumerable |
1075 | 1075 | YieldEnumerable = define("System.YieldEnumerable", function (T) |
1076 | 1076 | return { |
1077 | | - __inherits__ = { System.IEnumerable_1(T), System.IEnumerator_1(T), System.IDisposable }, |
| 1077 | + base = { System.IEnumerable_1(T), System.IEnumerator_1(T), System.IDisposable }, |
1078 | 1078 | __genericT__ = T |
1079 | 1079 | } |
1080 | 1080 | end, { |
@@ -1152,7 +1152,7 @@ local ReadOnlyCollection = { |
1152 | 1152 |
|
1153 | 1153 | define("System.ReadOnlyCollection", function (T) |
1154 | 1154 | return { |
1155 | | - __inherits__ = { System.IList_1(T), System.IList, System.IReadOnlyList_1(T) }, |
| 1155 | + base = { System.IList_1(T), System.IList, System.IReadOnlyList_1(T) }, |
1156 | 1156 | __genericT__ = T |
1157 | 1157 | } |
1158 | 1158 | end, ReadOnlyCollection) |
0 commit comments