aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ast/SkSLASTFieldSuffix.h
blob: 9ee8531bf15f3aa6c8cc8803a32ad862d9c7600b (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
/*
 * 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_ASTFIELDSUFFIX
#define SKSL_ASTFIELDSUFFIX

#include "SkSLASTSuffix.h"

namespace SkSL {

/**
 * A dotted identifier of the form ".foo". We refer to these as "fields" at parse time even if it is
 * actually vector swizzle (which looks the same to the parser).
 */
struct ASTFieldSuffix : public ASTSuffix {
    ASTFieldSuffix(Position position, SkString field) 
    : INHERITED(position, ASTSuffix::kField_Kind)
    , fField(std::move(field)) {}

    SkString description() const override {
        return "." + fField;
    }

    SkString fField;

    typedef ASTSuffix INHERITED;
};

} // namespace

#endif