1 write to KickoffMethod
Microsoft.CodeAnalysis.CSharp (1)
Lowering\StateMachineRewriter\StateMachineTypeSymbol.cs (1)
25this.KickoffMethod = kickoffMethod;
10 references to KickoffMethod
Microsoft.CodeAnalysis.CSharp (10)
Compiler\MethodCompiler.cs (1)
1531kickoffMethod = stateMachineMethod.StateMachineType.KickoffMethod;
Lowering\IteratorRewriter\IteratorFinallyMethodSymbol.cs (2)
246get { return _stateMachineType.KickoffMethod; } 256return _stateMachineType.KickoffMethod.CalculateLocalSyntaxOffset(localPosition, localTree);
Lowering\StateMachineRewriter\StateMachineTypeSymbol.cs (4)
36get { return KickoffMethod.ContainingType; } 50get { return KickoffMethod; } 62var kickoffType = KickoffMethod.ContainingType; 85public sealed override bool AreLocalsZeroed => KickoffMethod.AreLocalsZeroed;
Lowering\StateMachineRewriter\SynthesizedStateMachineMethod.cs (3)
48get { return StateMachineType.KickoffMethod; } 53return this.StateMachineType.KickoffMethod.CalculateLocalSyntaxOffset(localPosition, localTree); 79var kickoffMethod = StateMachineType.KickoffMethod;