aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLSwitchCase.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ir/SkSLSwitchCase.h')
-rw-r--r--src/sksl/ir/SkSLSwitchCase.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/sksl/ir/SkSLSwitchCase.h b/src/sksl/ir/SkSLSwitchCase.h
new file mode 100644
index 0000000000..3f1c3acbd3
--- /dev/null
+++ b/src/sksl/ir/SkSLSwitchCase.h
@@ -0,0 +1,47 @@
+/*
+ * Copyright 2017 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SKSL_SWITCHCASE
+#define SKSL_SWITCHCASE
+
+#include "SkSLStatement.h"
+
+namespace SkSL {
+
+/**
+ * A single case of a 'switch' statement.
+ */
+struct SwitchCase : public Statement {
+ SwitchCase(Position position, std::unique_ptr<Expression> value,
+ std::vector<std::unique_ptr<Statement>> statements)
+ : INHERITED(position, kSwitch_Kind)
+ , fValue(std::move(value))
+ , fStatements(std::move(statements)) {}
+
+ SkString description() const override {
+ SkString result;
+ if (fValue) {
+ result.appendf("case %s:\n", fValue->description().c_str());
+ } else {
+ result += "default:\n";
+ }
+ for (const auto& s : fStatements) {
+ result += s->description() + "\n";
+ }
+ return result;
+ }
+
+ // null value implies "default" case
+ std::unique_ptr<Expression> fValue;
+ std::vector<std::unique_ptr<Statement>> fStatements;
+
+ typedef Statement INHERITED;
+};
+
+} // namespace
+
+#endif