mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using System.IO;
|
|
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
using Semmle.Extraction.Kinds;
|
|
|
|
namespace Semmle.Extraction.CSharp.Entities.Expressions
|
|
{
|
|
internal class PostfixUnary : Expression<ExpressionSyntax>
|
|
{
|
|
private PostfixUnary(ExpressionNodeInfo info, ExprKind kind, ExpressionSyntax operand)
|
|
: base(info.SetKind(UnaryOperatorKind(info.Context, kind, info.Node)))
|
|
{
|
|
this.operand = operand;
|
|
operatorKind = kind;
|
|
}
|
|
|
|
private readonly ExpressionSyntax operand;
|
|
private readonly ExprKind operatorKind;
|
|
|
|
public static Expression Create(ExpressionNodeInfo info, ExpressionSyntax operand) => new PostfixUnary(info, info.Kind, operand).TryPopulate();
|
|
|
|
protected override void PopulateExpression(TextWriter trapFile)
|
|
{
|
|
Create(Context, operand, this, 0);
|
|
|
|
if ((operatorKind == ExprKind.POST_INCR || operatorKind == ExprKind.POST_DECR) &&
|
|
Kind == ExprKind.OPERATOR_INVOCATION)
|
|
{
|
|
OperatorCall(trapFile, Syntax);
|
|
trapFile.mutator_invocation_mode(this, 2);
|
|
}
|
|
}
|
|
}
|
|
}
|