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)
1109
ek = ExpressionKind.
UnaryPlus
;
1848
Debug.Assert(ek == ExpressionKind.Negate || ek == ExpressionKind.
UnaryPlus
);
1858
return ExprFactory.CreateUnaryOp(ExpressionKind.
UnaryPlus
, typeDec, arg);
2247
Debug.Assert((op2 == null) == (kind == ExpressionKind.Negate || kind == ExpressionKind.
UnaryPlus
|| kind == ExpressionKind.BitwiseNot));
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
482
case ExpressionKind.
UnaryPlus
:
599
case ExpressionKind.
UnaryPlus
:
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (2)
82
ExpressionKind.
UnaryPlus
=> VisitUPLUS(pExpr as ExprUnaryOp),
148
case ExpressionKind.
UnaryPlus
: