| Index: src/sksl/ir/SkSLDoStatement.h
|
| diff --git a/src/sksl/ir/SkSLDoStatement.h b/src/sksl/ir/SkSLDoStatement.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..601245327709608e7fd96a30abd20fba044740d6
|
| --- /dev/null
|
| +++ b/src/sksl/ir/SkSLDoStatement.h
|
| @@ -0,0 +1,38 @@
|
| +/*
|
| + * 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_DOSTATEMENT
|
| +#define SKSL_DOSTATEMENT
|
| +
|
| +#include "SkSLExpression.h"
|
| +#include "SkSLStatement.h"
|
| +
|
| +namespace SkSL {
|
| +
|
| +/**
|
| + * A 'do' statement.
|
| + */
|
| +struct DoStatement : public Statement {
|
| + DoStatement(Position position, std::unique_ptr<Statement> statement,
|
| + std::unique_ptr<Expression> test)
|
| + : INHERITED(position, kDo_Kind)
|
| + , fStatement(std::move(statement))
|
| + , fTest(std::move(test)) {}
|
| +
|
| + std::string description() const override {
|
| + return "do " + fStatement->description() + " while (" + fTest->description() + ");";
|
| + }
|
| +
|
| + const std::unique_ptr<Statement> fStatement;
|
| + const std::unique_ptr<Expression> fTest;
|
| +
|
| + typedef Statement INHERITED;
|
| +};
|
| +
|
| +} // namespace
|
| +
|
| +#endif
|
|
|