aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ast/SkSLASTParameter.h
blob: 01227c637e2196cb547ec9bfa9ca67319d4319d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * 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_ASTPARAMETER
#define SKSL_ASTPARAMETER

#include "SkSLASTPositionNode.h"
#include "SkSLASTType.h"
#include "../ir/SkSLModifiers.h"

namespace SkSL {

/**
 * A declaration of a parameter, as part of a function declaration.
 */
struct ASTParameter : public ASTPositionNode {
    // 'sizes' is a list of the array sizes appearing on a parameter, in source order.
    // e.g. int x[3][1] would have sizes [3, 1].
    ASTParameter(Position position, Modifiers modifiers, std::unique_ptr<ASTType> type,
                 String name, std::vector<int> sizes)
    : INHERITED(position)
    , fModifiers(modifiers)
    , fType(std::move(type))
    , fName(std::move(name))
    , fSizes(std::move(sizes)) {}

    String description() const override {
        String result = fModifiers.description() + fType->description() + " " + fName;
        for (int size : fSizes) {
            result += "[" + to_string(size) + "]";
        }
        return result;
    }

    const Modifiers fModifiers;
    const std::unique_ptr<ASTType> fType;
    const String fName;
    const std::vector<int> fSizes;

    typedef ASTPositionNode INHERITED;
};

} // namespace

#endif