14 writes to Operator
Microsoft.TemplateEngine.Core (14)
Expressions\Cpp\CppStyleEvaluatorDefinition.cs (14)
402
current.
Operator
= Operator.Not;
424
current.
Operator
= Operator.And;
429
current.
Operator
= Operator.BitwiseAnd;
433
current.
Operator
= Operator.BitwiseOr;
448
current.
Operator
= Operator.EqualTo;
452
current.
Operator
= Operator.GreaterThan;
456
current.
Operator
= Operator.GreaterThanOrEqualTo;
460
current.
Operator
= Operator.LeftShift;
464
current.
Operator
= Operator.LessThan;
468
current.
Operator
= Operator.LessThanOrEqualTo;
472
current.
Operator
= Operator.NotEqualTo;
493
current.
Operator
= Operator.Or;
497
current.
Operator
= Operator.RightShift;
510
current.
Operator
= Operator.Xor;
7 references to Operator
Microsoft.TemplateEngine.Core (7)
Expressions\Cpp\CppStyleEvaluatorDefinition.cs (6)
284
if (current.
Operator
== Operator.None)
288
|| !IsLogicalOperator(leftScope.
Operator
))
306
if (!IsLogicalOperator(current.
Operator
))
414
if (current.
Operator
!= Operator.None)
483
if (current.
Operator
!= Operator.None)
500
if (current.
Operator
!= Operator.None)
Expressions\Cpp\Scope.cs (1)
57
switch (
Operator
)