source:
src/SynTree/SynTree.h
@
16e6905
Last change on this file since 16e6905 was 71806e0, checked in by , 2 years ago | |
---|---|
|
|
File size: 2.8 KB |
Rev | Line | |
---|---|---|
[0dd3a2f] | 1 | // |
2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo | |
3 | // | |
4 | // The contents of this file are covered under the licence agreement in the | |
5 | // file "LICENCE" distributed with Cforall. | |
6 | // | |
[71f4e4f] | 7 | // SynTree.h -- |
[0dd3a2f] | 8 | // |
9 | // Author : Richard C. Bilson | |
10 | // Created On : Mon May 18 07:44:20 2015 | |
[033ff37] | 11 | // Last Modified By : Peter A. Buhr |
[3b0bc16] | 12 | // Last Modified On : Tue Feb 1 09:22:33 2022 |
13 | // Update Count : 14 | |
[0dd3a2f] | 14 | // |
[51b7345] | 15 | |
[6b0b624] | 16 | #pragma once |
[51b7345] | 17 | |
18 | #include <string> | |
19 | #include <list> | |
20 | #include <map> | |
21 | #include <iostream> | |
22 | ||
[262f085f] | 23 | class BaseSyntaxNode; |
24 | ||
[51b7345] | 25 | class Declaration; |
26 | class DeclarationWithType; | |
27 | class ObjectDecl; | |
28 | class FunctionDecl; | |
29 | class AggregateDecl; | |
30 | class StructDecl; | |
31 | class UnionDecl; | |
32 | class EnumDecl; | |
[4040425] | 33 | class TraitDecl; |
[51b7345] | 34 | class NamedTypeDecl; |
35 | class TypeDecl; | |
36 | class TypedefDecl; | |
[e994912] | 37 | class AsmDecl; |
[2d019af] | 38 | class DirectiveDecl; |
[f6e3e34] | 39 | class StaticAssertDecl; |
[71806e0] | 40 | class InlineMemberDecl; |
[51b7345] | 41 | |
42 | class Statement; | |
43 | class CompoundStmt; | |
44 | class ExprStmt; | |
[7f5566b] | 45 | class AsmStmt; |
[cc32d83] | 46 | class DirectiveStmt; |
[51b7345] | 47 | class IfStmt; |
[3b0bc16] | 48 | class WhileDoStmt; |
[51b7345] | 49 | class ForStmt; |
50 | class SwitchStmt; | |
51 | class CaseStmt; | |
52 | class BranchStmt; | |
53 | class ReturnStmt; | |
[daf1af8] | 54 | class ThrowStmt; |
[51b7345] | 55 | class TryStmt; |
56 | class CatchStmt; | |
57 | class FinallyStmt; | |
[37cdd97] | 58 | class SuspendStmt; |
[135b431] | 59 | class WaitForStmt; |
[61255ad] | 60 | class WithStmt; |
[51b7345] | 61 | class NullStmt; |
62 | class DeclStmt; | |
63 | class NullStmt; | |
[f1b1e4c] | 64 | class ImplicitCtorDtorStmt; |
[6cebfef] | 65 | class MutexStmt; |
[51b7345] | 66 | |
67 | class Expression; | |
68 | class ApplicationExpr; | |
69 | class UntypedExpr; | |
70 | class NameExpr; | |
71 | class AddressExpr; | |
72 | class LabelAddressExpr; | |
73 | class CastExpr; | |
[9a705dc8] | 74 | class KeywordCastExpr; |
[a5f0529] | 75 | class VirtualCastExpr; |
[51b7345] | 76 | class MemberExpr; |
77 | class UntypedMemberExpr; | |
78 | class VariableExpr; | |
79 | class ConstantExpr; | |
80 | class SizeofExpr; | |
[47534159] | 81 | class AlignofExpr; |
[2a4b088] | 82 | class UntypedOffsetofExpr; |
[25a054f] | 83 | class OffsetofExpr; |
[afc1045] | 84 | class OffsetPackExpr; |
[51b7345] | 85 | class LogicalExpr; |
86 | class ConditionalExpr; | |
87 | class CommaExpr; | |
88 | class TypeExpr; | |
[6e50a6b] | 89 | class DimensionExpr; |
[7f5566b] | 90 | class AsmExpr; |
[db4ecc5] | 91 | class ImplicitCopyCtorExpr; |
[b6fe7e6] | 92 | class ConstructorExpr; |
[630a82a] | 93 | class CompoundLiteralExpr; |
[8688ce1] | 94 | class RangeExpr; |
[907eccb] | 95 | class UntypedTupleExpr; |
[6eb8948] | 96 | class TupleExpr; |
[3b58d91] | 97 | class TupleIndexExpr; |
[6eb8948] | 98 | class TupleAssignExpr; |
99 | class StmtExpr; | |
[3c13c03] | 100 | class UniqueExpr; |
[e4d829b] | 101 | class UntypedInitExpr; |
102 | class InitExpr; | |
[44b4114] | 103 | class DeletedExpr; |
[0f79853] | 104 | class DefaultArgExpr; |
[d807ca28] | 105 | class GenericExpr; |
[50a8aa9] | 106 | class QualifiedNameExpr; |
[51b7345] | 107 | |
108 | class Type; | |
109 | class VoidType; | |
110 | class BasicType; | |
111 | class PointerType; | |
112 | class ArrayType; | |
[ce8c12f] | 113 | class ReferenceType; |
[c5d7701] | 114 | class QualifiedType; |
[51b7345] | 115 | class FunctionType; |
116 | class ReferenceToType; | |
117 | class StructInstType; | |
118 | class UnionInstType; | |
119 | class EnumInstType; | |
[4040425] | 120 | class TraitInstType; |
[51b7345] | 121 | class TypeInstType; |
122 | class TupleType; | |
123 | class TypeofType; | |
[7ff35e0e] | 124 | class VTableType; |
[51b7345] | 125 | class AttrType; |
[44b7088] | 126 | class VarArgsType; |
[89e6ffc] | 127 | class ZeroType; |
128 | class OneType; | |
[47498bd] | 129 | class GlobalScopeType; |
[51b7345] | 130 | |
[e4d829b] | 131 | class Designation; |
[51b7345] | 132 | class Initializer; |
133 | class SingleInit; | |
134 | class ListInit; | |
[71f4e4f] | 135 | class ConstructorInit; |
[51b7345] | 136 | |
137 | //template <class T> // emulate a union with templates? | |
138 | class Constant; | |
139 | ||
[0f8e4ac] | 140 | // typedef std::string Label; |
141 | class Label; | |
[51b7345] | 142 | typedef unsigned int UniqueId; |
143 | ||
144 | class TypeSubstitution; | |
145 | ||
[7baed7d] | 146 | // gcc attribute |
147 | class Attribute; | |
148 | ||
[0dd3a2f] | 149 | // Local Variables: // |
150 | // tab-width: 4 // | |
151 | // mode: c++ // | |
152 | // compile-command: "make install" // | |
153 | // End: // |
Note: See TracBrowser
for help on using the repository browser.