1 write to IsVar
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8112this.IsVar = isVar;
8 references to IsVar
Microsoft.CodeAnalysis.CSharp (8)
Binder\DecisionDagBuilder.cs (1)
401if (!declaration.IsVar)
FlowAnalysis\AbstractFlowPass.cs (2)
988case BoundDeclarationPattern { IsVar: false }: 1019case BoundDeclarationPattern { IsVar: true }:
Generated\BoundNodes.xml.Generated.cs (4)
8123if (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)) 12072return node.Update(declaredType, node.IsVar, node.Variable, variableAccess, inputType, narrowedType); 14732return node.Update(declaredType, node.IsVar, variable, variableAccess, inputType, narrowedType); 16926new TreeDumperNode("isVar", node.IsVar, null),
Operations\CSharpOperationFactory.cs (1)
2546bool acceptsNull = boundDeclarationPattern.IsVar;