chromium/third_party/skia/src/sksl/ir/SkSLDiscardStatement.h

/*
 * 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 "src/sksl/SkSLPosition.h"
#include "src/sksl/ir/SkSLIRNode.h"
#include "src/sksl/ir/SkSLStatement.h"

#include <memory>
#include <string>

namespace SkSL {

class Context;

/**
 * A 'discard' statement.
 */
class DiscardStatement final : public Statement {};

}  // namespace SkSL

#endif