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