/* * 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 Make(int line) { return std::make_unique(line); } std::unique_ptr clone() const override { return std::make_unique(fLine); } String description() const override { return String("discard;"); } private: using INHERITED = Statement; }; } // namespace SkSL #endif