chromium/third_party/skia/src/sksl/ir/SkSLForStatement.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_FORSTATEMENT
#define SKSL_FORSTATEMENT

#include "src/sksl/SkSLPosition.h"
#include "src/sksl/ir/SkSLExpression.h"
#include "src/sksl/ir/SkSLIRNode.h"
#include "src/sksl/ir/SkSLStatement.h"
#include "src/sksl/ir/SkSLSymbolTable.h"

#include <memory>
#include <string>
#include <utility>

namespace SkSL {

class Context;
class Variable;

/**
 * The unrollability information for an ES2-compatible loop.
 */
struct LoopUnrollInfo {};

/**
 * A 'for' statement.
 */
class ForStatement final : public Statement {};

}  // namespace SkSL

#endif