Index: src/sksl/ast/SkSLASTSuffix.h |
diff --git a/src/sksl/ast/SkSLASTSuffix.h b/src/sksl/ast/SkSLASTSuffix.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..18f79f01ea547bf5d4a45c59dce4ddb0923c5b97 |
--- /dev/null |
+++ b/src/sksl/ast/SkSLASTSuffix.h |
@@ -0,0 +1,51 @@ |
+/* |
+ * 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_ASTSUFFIX |
+#define SKSL_ASTSUFFIX |
+ |
+#include "SkSLASTPositionNode.h" |
+#include "SkSLASTExpression.h" |
+ |
+namespace SkSL { |
+ |
+/** |
+ * This and its subclasses represents expression suffixes, such as '[0]' or '.rgb'. Suffixes are not |
+ * expressions in and of themselves; they are attached to expressions to modify them. |
+ */ |
+struct ASTSuffix : public ASTPositionNode { |
+ enum Kind { |
+ kIndex_Kind, |
+ kCall_Kind, |
+ kField_Kind, |
+ kPostIncrement_Kind, |
+ kPostDecrement_Kind |
+ }; |
+ |
+ ASTSuffix(Position position, Kind kind) |
+ : INHERITED(position) |
+ , fKind(kind) {} |
+ |
+ std::string description() const override { |
+ switch (fKind) { |
+ case kPostIncrement_Kind: |
+ return "++"; |
+ case kPostDecrement_Kind: |
+ return "--"; |
+ default: |
+ ABORT("unsupported suffix operator"); |
+ } |
+ } |
+ |
+ Kind fKind; |
+ |
+ typedef ASTPositionNode INHERITED; |
+}; |
+ |
+} // namespace |
+ |
+#endif |