blob: c0da0afb7dabd6d12849882d604bddf66ced20f1 [file] [log] [blame]
ethannicholasb3058bd2016-07-01 08:22:01 -07001/*
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 */
Ethan Nicholas0df1b042017-03-31 13:56:23 -04007
ethannicholasb3058bd2016-07-01 08:22:01 -07008#ifndef SKSL_ASTWHILESTATEMENT
9#define SKSL_ASTWHILESTATEMENT
10
11#include "SkSLASTStatement.h"
12
13namespace SkSL {
14
15/**
16 * A 'while' statement.
17 */
18struct ASTWhileStatement : public ASTStatement {
Ethan Nicholas5b5f0962017-09-11 13:50:14 -070019 ASTWhileStatement(int offset, std::unique_ptr<ASTExpression> test,
ethannicholasb3058bd2016-07-01 08:22:01 -070020 std::unique_ptr<ASTStatement> statement)
Ethan Nicholas5b5f0962017-09-11 13:50:14 -070021 : INHERITED(offset, kWhile_Kind)
ethannicholasb3058bd2016-07-01 08:22:01 -070022 , fTest(std::move(test))
23 , fStatement(std::move(statement)) {}
24
Ethan Nicholas0df1b042017-03-31 13:56:23 -040025 String description() const override {
ethannicholasb3058bd2016-07-01 08:22:01 -070026 return "while (" + fTest->description() + ") " + fStatement->description();
27 }
28
29 const std::unique_ptr<ASTExpression> fTest;
30 const std::unique_ptr<ASTStatement> fStatement;
31
32 typedef ASTStatement INHERITED;
33};
34
35} // namespace
36
37#endif