blob: 755029b0a212ffa03d744760627dd7c85907fb88 [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 */
7
8#ifndef SKSL_ASTINDEXSUFFIX
9#define SKSL_ASTINDEXSUFFIX
10
11#include "SkSLASTExpression.h"
12#include "SkSLASTSuffix.h"
13
14namespace SkSL {
15
16/**
ethannicholasccb1dd82016-10-11 08:47:04 -070017 * A bracketed expression, as in '[0]', indicating an array access. Empty brackets (as occur in
18 * 'float[](5, 6)' are represented with a null fExpression.
ethannicholasb3058bd2016-07-01 08:22:01 -070019 */
20struct ASTIndexSuffix : public ASTSuffix {
ethannicholasccb1dd82016-10-11 08:47:04 -070021 ASTIndexSuffix(Position position)
22 : INHERITED(position, ASTSuffix::kIndex_Kind)
23 , fExpression(nullptr) {}
24
ethannicholasb3058bd2016-07-01 08:22:01 -070025 ASTIndexSuffix(std::unique_ptr<ASTExpression> expression)
ethannicholasccb1dd82016-10-11 08:47:04 -070026 : INHERITED(expression ? expression->fPosition : Position(), ASTSuffix::kIndex_Kind)
ethannicholasb3058bd2016-07-01 08:22:01 -070027 , fExpression(std::move(expression)) {}
28
29 std::string description() const override {
ethannicholasccb1dd82016-10-11 08:47:04 -070030 if (fExpression) {
31 return "[" + fExpression->description() + "]";
32 } else {
33 return "[]";
34 }
ethannicholasb3058bd2016-07-01 08:22:01 -070035 }
36
ethannicholasccb1dd82016-10-11 08:47:04 -070037 // may be null
ethannicholasb3058bd2016-07-01 08:22:01 -070038 std::unique_ptr<ASTExpression> fExpression;
39
40 typedef ASTSuffix INHERITED;
41};
42
43} // namespace
44
45#endif