blob: c22a2fbb0a474a995a9048a551138b4a935e2057 [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_ASTSTATEMENT
9#define SKSL_ASTSTATEMENT
10
11#include <vector>
12#include "SkSLASTPositionNode.h"
13#include "SkSLASTExpression.h"
14
15namespace SkSL {
16
17/**
18 * Abstract supertype of all statements.
19 */
20struct ASTStatement : public ASTPositionNode {
21 enum Kind {
22 kBlock_Kind,
23 kVarDeclaration_Kind,
24 kExpression_Kind,
25 kIf_Kind,
26 kFor_Kind,
27 kWhile_Kind,
28 kDo_Kind,
Ethan Nicholasaf197692017-02-27 13:26:45 -050029 kSwitch_Kind,
ethannicholasb3058bd2016-07-01 08:22:01 -070030 kReturn_Kind,
31 kBreak_Kind,
32 kContinue_Kind,
33 kDiscard_Kind
34 };
35
Ethan Nicholas5b5f0962017-09-11 13:50:14 -070036 ASTStatement(int offset, Kind kind)
37 : INHERITED(offset)
ethannicholasb3058bd2016-07-01 08:22:01 -070038 , fKind(kind) {}
39
40 Kind fKind;
41
42 typedef ASTPositionNode INHERITED;
43};
44
45} // namespace
46
47#endif