1/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SKSL_ASTDOSTATEMENT
9#define SKSL_ASTDOSTATEMENT
10
11#include "SkSLASTStatement.h"
12
13namespace SkSL {
14
15/**
16 * A 'do' loop.
17 */
18struct ASTDoStatement : public ASTStatement {
19    ASTDoStatement(int offset, std::unique_ptr<ASTStatement> statement,
20                   std::unique_ptr<ASTExpression> test)
21    : INHERITED(offset, kDo_Kind)
22    , fStatement(std::move(statement))
23    , fTest(std::move(test)) {}
24
25    String description() const override {
26        return "do " + fStatement->description() + " while (" + fTest->description() + ");";
27    }
28
29    const std::unique_ptr<ASTStatement> fStatement;
30    const std::unique_ptr<ASTExpression> fTest;
31
32    typedef ASTStatement INHERITED;
33};
34
35} // namespace
36
37#endif
38