blob: 0395ef91b48df445a09c00585a4c5d0f264a8bab [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 */
Ethan Nicholas0df1b042017-03-31 13:56:23 -04007
ethannicholasb3058bd2016-07-01 08:22:01 -07008#ifndef SKSL_ASTDECLARATION
9#define SKSL_ASTDECLARATION
10
11#include "SkSLASTPositionNode.h"
12
13namespace SkSL {
14
15/**
Ethan Nicholas0df1b042017-03-31 13:56:23 -040016 * Abstract supertype of declarations such as variables and functions.
ethannicholasb3058bd2016-07-01 08:22:01 -070017 */
18struct ASTDeclaration : public ASTPositionNode {
19 enum Kind {
20 kVar_Kind,
21 kFunction_Kind,
22 kInterfaceBlock_Kind,
ethannicholas5961bc92016-10-12 06:39:56 -070023 kExtension_Kind,
24 kPrecision_Kind,
25 kModifiers_Kind
ethannicholasb3058bd2016-07-01 08:22:01 -070026 };
27
28 ASTDeclaration(Position position, Kind kind)
29 : INHERITED(position)
30 , fKind(kind) {}
31
32 Kind fKind;
33
34 typedef ASTPositionNode INHERITED;
35};
36
37} // namespace
38
39#endif