2 references to SynthesizedLambdaCacheFieldSymbol
Microsoft.CodeAnalysis.CSharp (2)
Lowering\ClosureConversion\ClosureConversion.cs (1)
1710
var cacheField = new
SynthesizedLambdaCacheFieldSymbol
(translatedLambdaContainer, cacheVariableType, cacheVariableName, _topLevelMethod, isReadOnly: false, isStatic: closureKind == ClosureKind.Singleton);
Lowering\ClosureConversion\SynthesizedClosureEnvironment.cs (1)
68
SingletonCache = new
SynthesizedLambdaCacheFieldSymbol
(this, this, cacheVariableName, topLevelMethod, isReadOnly: true, isStatic: true);