3 instantiations of ParameterProxy
ILCompiler.ReadyToRun (3)
src\runtime\src\coreclr\tools\Common\Compiler\Dataflow\MethodProxy.cs (1)
46: new ParameterProxy(this, index);
src\runtime\src\tools\illink\src\ILLink.Shared\TypeSystemProxy\ParameterCollection.cs (2)
52public ParameterProxy Current => new ParameterProxy(_method, (ParameterIndex)_current); 54object IEnumerator.Current => new ParameterProxy(_method, (ParameterIndex)_current);
8 references to ParameterProxy
ILCompiler.ReadyToRun (8)
src\runtime\src\coreclr\tools\Common\Compiler\Dataflow\MethodProxy.cs (1)
42internal partial ParameterProxy GetParameter(ParameterIndex index)
src\runtime\src\tools\illink\src\ILLink.Shared\TypeSystemProxy\MethodProxy.cs (2)
34/// Returns a List of <see cref="ParameterProxy"/> representing the parameters the method takes, including the implicit 'this' parameters. 43internal partial ParameterProxy GetParameter(ParameterIndex index);
src\runtime\src\tools\illink\src\ILLink.Shared\TypeSystemProxy\ParameterCollection.cs (5)
16internal readonly struct ParameterProxyEnumerable : IEnumerable<ParameterProxy> 33IEnumerator<ParameterProxy> IEnumerable<ParameterProxy>.GetEnumerator() => new ParameterEnumerator(_start, _end, _method); 37public struct ParameterEnumerator : IEnumerator<ParameterProxy> 52public ParameterProxy Current => new ParameterProxy(_method, (ParameterIndex)_current);