1 write to IsExplicitNotNullTest
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8607this.IsExplicitNotNullTest = isExplicitNotNullTest;
9 references to IsExplicitNotNullTest
Microsoft.CodeAnalysis.CSharp (9)
Binder\DecisionDagBuilder_CheckOrReachability.cs (1)
1058return typePattern1.Update(typePattern1.DeclaredType, typePattern1.IsExplicitNotNullTest, unionMatchingMode: UnionMatchingMode.None, inputType, typePattern1.NarrowedType);
Binder\DecisionDagBuilder.cs (1)
621output = MakeConvertToType(inputInfo: input, syntax: typePattern.Syntax, type: type, isExplicitTest: typePattern.IsExplicitNotNullTest, tests: tests);
Binder\UnionMatchingRewriter.cs (2)
176node.Update(node.DeclaredType, node.IsExplicitNotNullTest, unionMatchingMode: UnionMatchingMode.None, inputType: node.InputType, narrowedType: node.NarrowedType), 177exclusiveValuePattern: node.Update(node.DeclaredType, node.IsExplicitNotNullTest, unionMatchingMode: UnionMatchingMode.None, inputType: ObjectType, narrowedType: node.NarrowedType));
FlowAnalysis\NullableWalker_Patterns.cs (1)
187if (tp.IsExplicitNotNullTest)
Generated\BoundNodes.xml.Generated.cs (4)
8624if (declaredType != this.DeclaredType || isExplicitNotNullTest != this.IsExplicitNotNullTest || unionMatchingMode != this.UnionMatchingMode || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything)) 12619return node.Update(declaredType, node.IsExplicitNotNullTest, node.UnionMatchingMode, inputType, narrowedType); 15317return node.Update(declaredType, node.IsExplicitNotNullTest, node.UnionMatchingMode, inputType, narrowedType); 17581new TreeDumperNode("isExplicitNotNullTest", node.IsExplicitNotNullTest, null),