13 references to IsLifted
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder_Operators.cs (1)
2820
if (kind.IsEnum() && !kind.
IsLifted
())
Binder\Semantics\Operators\UnaryOperatorOverloadResolution.cs (2)
213
bool lifted1 = op1.Kind.
IsLifted
();
214
bool lifted2 = op2.Kind.
IsLifted
();
Compilation\BuiltInOperators.cs (1)
282
if (kind.
IsLifted
())
FlowAnalysis\NullableWalker.cs (2)
10340
bool isLifted = node.OperatorKind.
IsLifted
();
10372
TypeWithState.Create(node.Type, node.OperatorKind.
IsLifted
() ? argumentResult.State : NullableFlowState.NotNull);
Lowering\DiagnosticsPass_Warnings.cs (1)
737
if (!node.OperatorKind.
IsLifted
())
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (4)
103
else if (kind.
IsLifted
())
628
bool isLifted = node.OperatorKind.
IsLifted
();
947
if (node.OperatorKind.
IsLifted
())
1059
if (unaryOperatorKind.
IsLifted
())
Operations\CSharpOperationFactory.cs (2)
1322
bool isLifted = boundIncrementOperator.OperatorKind.
IsLifted
();
1372
bool isLifted = boundUnaryOperator.OperatorKind.
IsLifted
();