(int index)
| 77 | } |
| 78 | |
| 79 | internal TypeMeta? GetTypeMetaRef(int index) |
| 80 | { |
| 81 | if (index < 0) |
| 82 | { |
| 83 | return null; |
| 84 | } |
| 85 | |
| 86 | if (index == 0) |
| 87 | { |
| 88 | return _hasFirstTypeMetaRef ? _firstTypeMetaRef : null; |
| 89 | } |
| 90 | |
| 91 | return _typeMetaRefs.Get(index - 1); |
| 92 | } |
| 93 | |
| 94 | internal void StoreTypeMetaRef(TypeMeta typeMeta, int index) |
| 95 | { |