1 write to IsVar
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8112
this.
IsVar
= isVar;
8 references to IsVar
Microsoft.CodeAnalysis.CSharp (8)
Binder\DecisionDagBuilder.cs (1)
401
if (!declaration.
IsVar
)
FlowAnalysis\AbstractFlowPass.cs (2)
988
case BoundDeclarationPattern {
IsVar
: false }:
1019
case BoundDeclarationPattern {
IsVar
: true }:
Generated\BoundNodes.xml.Generated.cs (4)
8123
if (declaredType != this.DeclaredType || isVar != this.
IsVar
|| !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(variable, this.Variable) || variableAccess != this.VariableAccess || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything))
12072
return node.Update(declaredType, node.
IsVar
, node.Variable, variableAccess, inputType, narrowedType);
14732
return node.Update(declaredType, node.
IsVar
, variable, variableAccess, inputType, narrowedType);
16926
new TreeDumperNode("isVar", node.
IsVar
, null),
Operations\CSharpOperationFactory.cs (1)
2546
bool acceptsNull = boundDeclarationPattern.
IsVar
;