| 1585 | } |
| 1586 | |
| 1587 | MType* MMethod::GetParameterType(int32 paramIdx) const |
| 1588 | { |
| 1589 | if (!_hasCachedSignature) |
| 1590 | CacheSignature(); |
| 1591 | ASSERT_LOW_LAYER(paramIdx >= 0 && paramIdx < _paramsCount); |
| 1592 | return (MType*)_parameterTypes.Get()[paramIdx]; |
| 1593 | } |
| 1594 | |
| 1595 | bool MMethod::GetParameterIsOut(int32 paramIdx) const |
| 1596 | { |