blob: 5cdf1e17ca29829ec7ed0309d2ad8e5a4c0a4956 [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_RETURNSTATEMENT
#define SKSL_RETURNSTATEMENT
#include "include/private/SkSLStatement.h"
#include "src/sksl/ir/SkSLExpression.h"
namespace SkSL {
/**
* A 'return' statement.
*/
class ReturnStatement final : public Statement {
public:
inline static constexpr Kind kStatementKind = Kind::kReturn;
ReturnStatement(int line, std::unique_ptr<Expression> expression)
: INHERITED(line, kStatementKind)
, fExpression(std::move(expression)) {}
static std::unique_ptr<Statement> Make(int line, std::unique_ptr<Expression> expression) {
return std::make_unique<ReturnStatement>(line, std::move(expression));
}
std::unique_ptr<Expression>& expression() {
return fExpression;
}
const std::unique_ptr<Expression>& expression() const {
return fExpression;
}
void setExpression(std::unique_ptr<Expression> expr) {
fExpression = std::move(expr);
}
std::unique_ptr<Statement> clone() const override {
return std::make_unique<ReturnStatement>(fLine, this->expression()->clone());
}
String description() const override {
if (this->expression()) {
return "return " + this->expression()->description() + ";";
} else {
return String("return;");
}
}
private:
std::unique_ptr<Expression> fExpression;
using INHERITED = Statement;
};
} // namespace SkSL
#endif