10 references to UnaryPlus
Microsoft.CSharp (10)
Microsoft\CSharp\RuntimeBinder\Semantics\COperators.cs (1)
61
new OperatorInfo(TokenKind.Plus, PredefinedName.PN_OPUNARYPLUS, ExpressionKind.
UnaryPlus
),
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionKind.cs (1)
119
case ExpressionKind.
UnaryPlus
:
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (4)
1085
ek = ExpressionKind.
UnaryPlus
;
1808
Debug.Assert(ek == ExpressionKind.Negate || ek == ExpressionKind.
UnaryPlus
);
1818
return ExprFactory.CreateUnaryOp(ExpressionKind.
UnaryPlus
, typeDec, arg);
2195
Debug.Assert((op2 == null) == (kind == ExpressionKind.Negate || kind == ExpressionKind.
UnaryPlus
|| kind == ExpressionKind.BitwiseNot));
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
481
case ExpressionKind.
UnaryPlus
:
598
case ExpressionKind.
UnaryPlus
:
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (2)
82
ExpressionKind.
UnaryPlus
=> VisitUPLUS(pExpr as ExprUnaryOp),
148
case ExpressionKind.
UnaryPlus
: