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