1 implementation of OperatorMethod
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
7272
public IMethodSymbol?
OperatorMethod
{ get; }
11 references to OperatorMethod
Microsoft.CodeAnalysis (3)
Generated\Operations.Generated.cs (2)
2200
/// Type parameter which runtime type will be used to resolve virtual invocation of the <see cref="
OperatorMethod
" />, if any.
2201
/// Null if <see cref="
OperatorMethod
" /> is resolved statically, or is null.
Operations\ControlFlowGraphBuilder.cs (1)
7369
operation.
OperatorMethod
, operation.ConstrainedToType,
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (6)
Semantics\DynamicTests.cs (6)
7715
Assert.Null(operation.
OperatorMethod
);
7821
Assert.Null(operation.
OperatorMethod
);
7926
Assert.Null(operation.
OperatorMethod
);
7996
Assert.Null(operation.
OperatorMethod
);
8102
Assert.Null(operation.
OperatorMethod
);
8207
Assert.Null(operation.
OperatorMethod
);
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
1734
LogHasOperatorMethodExpressionCommon(operation.
OperatorMethod
, operation.ConstrainedToType);
Compilation\TestOperationVisitor.cs (1)
1200
var operatorMethod = operation.
OperatorMethod
;