13 implementations of Method
Microsoft.CodeAnalysis.CSharp (13)
Lowering\AsyncRewriter\AsyncConstructor.cs (1)
19IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method
Lowering\ClosureConversion\LambdaCapturedVariable.cs (1)
164public IMethodSymbolInternal Method
Lowering\ClosureConversion\SynthesizedClosureEnvironment.cs (1)
150IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method => TopLevelMethod;
Lowering\ClosureConversion\SynthesizedClosureEnvironmentConstructor.cs (1)
19IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method
Lowering\ClosureConversion\SynthesizedClosureMethod.cs (1)
226IMethodSymbolInternal? ISynthesizedMethodBodyImplementationSymbol.Method => TopLevelMethod;
Lowering\IteratorRewriter\IteratorConstructor.cs (1)
49IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method
Lowering\IteratorRewriter\IteratorFinallyMethodSymbol.cs (1)
244IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method
Lowering\LocalRewriter\DynamicSiteContainer.cs (1)
59IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method
Lowering\StateMachineRewriter\StateMachineFieldSymbol.cs (1)
78IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method
Lowering\StateMachineRewriter\StateMachineTypeSymbol.cs (1)
48IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method
Lowering\StateMachineRewriter\SynthesizedStateMachineMethod.cs (1)
46IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method
Lowering\StateMachineRewriter\SynthesizedStateMachineProperty.cs (1)
170IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method
Symbols\Synthesized\SynthesizedLambdaCacheFieldSymbol.cs (1)
30IMethodSymbolInternal ISynthesizedMethodBodyImplementationSymbol.Method => _topLevelMethod;
9 references to Method
Microsoft.CodeAnalysis (4)
Emit\EditAndContinue\SymbolChanges.cs (2)
138RoslynDebug.Assert(synthesizedSymbol.Method != null); 140var generatorChange = GetChange((IDefinition)synthesizedSymbol.Method.GetCciAdapter());
Symbols\ISynthesizedMethodBodyImplementationSymbol.cs (2)
19/// True if this symbol body needs to be updated when the <see cref="Method"/> body is updated. 20/// False if <see cref="Method"/> is null.
Microsoft.CodeAnalysis.CSharp (5)
Lowering\AsyncRewriter\AsyncConstructor.cs (1)
21get { return ((ISynthesizedMethodBodyImplementationSymbol)this.ContainingSymbol).Method; }
Lowering\ClosureConversion\SynthesizedClosureEnvironmentConstructor.cs (1)
21get { return ((ISynthesizedMethodBodyImplementationSymbol)this.ContainingSymbol).Method; }
Lowering\IteratorRewriter\IteratorConstructor.cs (1)
51get { return ((ISynthesizedMethodBodyImplementationSymbol)this.ContainingSymbol).Method; }
Lowering\StateMachineRewriter\StateMachineFieldSymbol.cs (1)
80get { return ((ISynthesizedMethodBodyImplementationSymbol)ContainingSymbol).Method; }
Lowering\StateMachineRewriter\SynthesizedStateMachineProperty.cs (1)
172get { return ((ISynthesizedMethodBodyImplementationSymbol)ContainingSymbol).Method; }