blob: adcf014034c8a9d9feb5a0ce52187e763dc421cd [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_DISCARDSTATEMENT
#define SKSL_DISCARDSTATEMENT
#include "include/private/SkSLStatement.h"
#include "src/sksl/ir/SkSLExpression.h"
namespace SkSL {
/**
* A 'discard' statement.
*/
class DiscardStatement final : public Statement {
public:
inline static constexpr Kind kStatementKind = Kind::kDiscard;
DiscardStatement(int line)
: INHERITED(line, kStatementKind) {}
static std::unique_ptr<Statement> Make(int line) {
return std::make_unique<DiscardStatement>(line);
}
std::unique_ptr<Statement> clone() const override {
return std::make_unique<DiscardStatement>(fLine);
}
String description() const override {
return String("discard;");
}
private:
using INHERITED = Statement;
};
} // namespace SkSL
#endif