aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLTypeReference.h
blob: f7065b7c3fadc28f06ba2997f2887c6dcf45a3c0 (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
/*
 * 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_TYPEREFERENCE
#define SKSL_TYPEREFERENCE

#include "SkSLContext.h"
#include "SkSLExpression.h"

namespace SkSL {

/**
 * Represents an identifier referring to a type. This is an intermediate value: TypeReferences are
 * always eventually replaced by Constructors in valid programs.
 */
struct TypeReference : public Expression {
    TypeReference(const Context& context, int offset, const Type& type)
    : INHERITED(offset, kTypeReference_Kind, *context.fInvalid_Type)
    , fValue(type) {}

    bool hasSideEffects() const override {
        return false;
    }

    String description() const override {
        return String(fValue.fName);
    }

    const Type& fValue;

    typedef Expression INHERITED;
};

} // namespace

#endif