blob: e02555db709ac96e60ea99f54e9d96dba9f49917 [file] [log] [blame]
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SKSL_POSTFIXEXPRESSION
#define SKSL_POSTFIXEXPRESSION
#include "SkSLExpression.h"
#include "SkSLToken.h"
namespace SkSL {
/**
* An expression modified by a unary operator appearing after it, such as 'i++'.
*/
struct PostfixExpression : public Expression {
PostfixExpression(std::unique_ptr<Expression> operand, Token::Kind op)
: INHERITED(operand->fPosition, kPostfix_Kind, operand->fType)
, fOperand(std::move(operand))
, fOperator(op) {}
bool hasSideEffects() const override {
return true;
}
String description() const override {
return fOperand->description() + Token::OperatorName(fOperator);
}
std::unique_ptr<Expression> fOperand;
const Token::Kind fOperator;
typedef Expression INHERITED;
};
} // namespace
#endif