blob: 8b55ecf832ecf24d3c70f4c8191ef80f85ee75e6 [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_ASTDECLARATION
9#define SKSL_ASTDECLARATION
10
11#include "SkSLASTPositionNode.h"
12
13namespace SkSL {
14
15/**
16 * Abstract supertype of declarations such as variables and functions.
17 */
18struct ASTDeclaration : public ASTPositionNode {
19 enum Kind {
20 kVar_Kind,
21 kFunction_Kind,
22 kInterfaceBlock_Kind,
jvanverth9df16b52016-10-11 10:03:56 -070023 kExtension_Kind
ethannicholasb3058bd2016-07-01 08:22:01 -070024 };
25
26 ASTDeclaration(Position position, Kind kind)
27 : INHERITED(position)
28 , fKind(kind) {}
29
30 Kind fKind;
31
32 typedef ASTPositionNode INHERITED;
33};
34
35} // namespace
36
37#endif