1 write to WasTargetTyped
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7093this.WasTargetTyped = wasTargetTyped;
16 references to WasTargetTyped
Microsoft.CodeAnalysis.CSharp (16)
FlowAnalysis\NullableWalker.cs (5)
4689BoundDelegateCreationExpression { WasTargetTyped: true } or 9614analysisCompletion = visitLambdaArgument(delegateType, lambda, node.WasTargetTyped); 9619analysisCompletion = visitDelegateArgument(delegateType, arg, node.WasTargetTyped); 9628TypeWithState result = setAnalyzedNullability(node, delegateType, analysisCompletion, node.WasTargetTyped); 9668return analyzeMethodGroupConversion(node, delegateType, group, node.WasTargetTyped);
Generated\BoundNodes.xml.Generated.cs (5)
7107if (argument != this.Argument || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(methodOpt, this.MethodOpt) || isExtensionMethod != this.IsExtensionMethod || wasTargetTyped != this.WasTargetTyped || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 11897return node.Update(argument, node.MethodOpt, node.IsExtensionMethod, node.WasTargetTyped, type); 14329updatedNode = node.Update(argument, methodOpt, node.IsExtensionMethod, node.WasTargetTyped, infoAndType.Type!); 14334updatedNode = node.Update(argument, methodOpt, node.IsExtensionMethod, node.WasTargetTyped, node.Type); 16657new TreeDumperNode("wasTargetTyped", node.WasTargetTyped, null),
Lowering\ClosureConversion\ClosureConversion.cs (1)
1356node.WasTargetTyped,
Lowering\LocalRewriter\LocalRewriter_Conversion.cs (1)
57BoundDelegateCreationExpression { WasTargetTyped: true });
Lowering\LocalRewriter\LocalRewriter_DelegateCreationExpression.cs (2)
25return new BoundDelegateCreationExpression(node.Syntax, loweredReceiver, methodOpt: null, isExtensionMethod: false, node.WasTargetTyped, type: node.Type); 37return node.Update(receiver, method, node.IsExtensionMethod, node.WasTargetTyped, node.Type);
Lowering\MethodToClassRewriter.cs (1)
598return node.Update(rewrittenArgument, method, node.IsExtensionMethod, node.WasTargetTyped, type);
Lowering\SpillSequenceSpiller.cs (1)
1209return UpdateExpression(builder, node.Update(argument, node.MethodOpt, node.IsExtensionMethod, node.WasTargetTyped, node.Type));