Changes in src/SynTree/SynTree.h [8688ce1:7f5566b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/SynTree.h
r8688ce1 r7f5566b 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // SynTree.h -- 7 // SynTree.h -- 8 8 // 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Aug 3 17:02:34 201613 // Update Count : 712 // Last Modified On : Thu Jul 23 23:25:04 2015 13 // Update Count : 3 14 14 // 15 15 … … 30 30 class UnionDecl; 31 31 class EnumDecl; 32 class TraitDecl;32 class ContextDecl; 33 33 class NamedTypeDecl; 34 34 class TypeDecl; … … 45 45 class ForStmt; 46 46 class SwitchStmt; 47 class ChooseStmt; 48 class FallthruStmt; 47 49 class CaseStmt; 48 50 class BranchStmt; … … 54 56 class DeclStmt; 55 57 class NullStmt; 56 class ImplicitCtorDtorStmt;57 58 58 59 class Expression; … … 68 69 class ConstantExpr; 69 70 class SizeofExpr; 70 class AlignofExpr;71 class UntypedOffsetofExpr;72 class OffsetofExpr;73 class OffsetPackExpr;74 71 class AttrExpr; 75 72 class LogicalExpr; … … 80 77 class TypeExpr; 81 78 class AsmExpr; 82 class ImplicitCopyCtorExpr;83 79 class UntypedValofExpr; 84 class CompoundLiteralExpr;85 class RangeExpr;86 80 87 81 class Type; … … 95 89 class UnionInstType; 96 90 class EnumInstType; 97 class TraitInstType;91 class ContextInstType; 98 92 class TypeInstType; 99 93 class TupleType; 100 94 class TypeofType; 101 95 class AttrType; 102 class VarArgsType;103 96 104 97 class Initializer; 105 98 class SingleInit; 106 99 class ListInit; 107 class ConstructorInit;108 100 109 101 class Subrange; … … 112 104 class Constant; 113 105 114 // typedef std::string Label; 115 class Label; 106 typedef std::string Label; 116 107 typedef unsigned int UniqueId; 117 108 118 109 class TypeSubstitution; 119 120 // gcc attribute121 class Attribute;122 110 123 111 #endif // SYNTREE_H
Note:
See TracChangeset
for help on using the changeset viewer.