skia2/include/sksl/DSLCase.h
Ethan Nicholas 08ac524b43 Added operator= on DSLCase
Needed by DSLParser, and should have been defined anyway.

Change-Id: Ieaabe493a8caef80dda30f2ab35068f358901885
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/417677
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Commit-Queue: John Stiles <johnstiles@google.com>
Auto-Submit: Ethan Nicholas <ethannicholas@google.com>
Reviewed-by: John Stiles <johnstiles@google.com>
2021-06-10 22:29:24 +00:00

66 lines
1.4 KiB
C++

/*
* Copyright 2021 Google LLC.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SKSL_DSL_CASE
#define SKSL_DSL_CASE
#include "include/private/SkSLDefines.h"
#include "include/sksl/DSLExpression.h"
#include "include/sksl/DSLStatement.h"
#include <memory>
namespace SkSL {
class Statement;
namespace dsl {
class DSLCase {
public:
// An empty expression means 'default:'.
template<class... Statements>
DSLCase(DSLExpression value, Statements... statements)
: fValue(std::move(value)) {
fStatements.reserve_back(sizeof...(statements));
// in C++17, we could just do:
// (fStatements.push_back(DSLStatement(std::move(statements)).release()), ...);
int unused[] =
{0,
(static_cast<void>(fStatements.push_back(DSLStatement(std::move(statements)).release())),
0)...};
static_cast<void>(unused);
}
DSLCase(DSLExpression value, SkTArray<DSLStatement> statements);
DSLCase(DSLExpression value, SkSL::StatementArray statements);
DSLCase(DSLCase&&);
~DSLCase();
DSLCase& operator=(DSLCase&&);
void append(DSLStatement stmt);
private:
DSLExpression fValue;
SkSL::StatementArray fStatements;
friend class DSLCore;
template<class... Cases>
friend DSLPossibleStatement Switch(DSLExpression value, Cases... cases);
};
} // namespace dsl
} // namespace SkSL
#endif