source:
src/SynTree/SynTree.h@
3c09d47
      
      | Last change on this file since 3c09d47 was 9236060, checked in by , 8 years ago | |
|---|---|
| 
 | |
| File size: 2.6 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 | |
| [daf1af8] | 11 | // Last Modified By : Andrew Beach | 
| [a5f0529] | 12 | // Last Modified On : Mon Jul 24 16:54:00 2017 | 
| 13 | // Update Count : 11 | |
| [0dd3a2f] | 14 | // | 
| [51b73452] | 15 | |
| [6b0b624] | 16 | #pragma once | 
| [51b73452] | 17 | |
| 18 | #include <string> | |
| 19 | #include <list> | |
| 20 | #include <map> | |
| 21 | #include <iostream> | |
| 22 | ||
| [262f085f] | 23 | class BaseSyntaxNode; | 
| 24 | ||
| [51b73452] | 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; | 
| [51b73452] | 34 | class NamedTypeDecl; | 
| 35 | class TypeDecl; | |
| 36 | class FtypeDecl; | |
| 37 | class DtypeDecl; | |
| 38 | class TypedefDecl; | |
| [e994912] | 39 | class AsmDecl; | 
| [51b73452] | 40 | |
| 41 | class Statement; | |
| 42 | class CompoundStmt; | |
| 43 | class ExprStmt; | |
| [7f5566b] | 44 | class AsmStmt; | 
| [51b73452] | 45 | class IfStmt; | 
| 46 | class WhileStmt; | |
| 47 | class ForStmt; | |
| 48 | class SwitchStmt; | |
| 49 | class CaseStmt; | |
| 50 | class BranchStmt; | |
| 51 | class ReturnStmt; | |
| [daf1af8] | 52 | class ThrowStmt; | 
| [51b73452] | 53 | class TryStmt; | 
| 54 | class CatchStmt; | |
| 55 | class FinallyStmt; | |
| 56 | class NullStmt; | |
| 57 | class DeclStmt; | |
| 58 | class NullStmt; | |
| [f1b1e4c] | 59 | class ImplicitCtorDtorStmt; | 
| [51b73452] | 60 | |
| 61 | class Expression; | |
| 62 | class ApplicationExpr; | |
| 63 | class UntypedExpr; | |
| 64 | class NameExpr; | |
| 65 | class AddressExpr; | |
| 66 | class LabelAddressExpr; | |
| 67 | class CastExpr; | |
| [a5f0529] | 68 | class VirtualCastExpr; | 
| [51b73452] | 69 | class MemberExpr; | 
| 70 | class UntypedMemberExpr; | |
| 71 | class VariableExpr; | |
| 72 | class ConstantExpr; | |
| 73 | class SizeofExpr; | |
| [47534159] | 74 | class AlignofExpr; | 
| [2a4b088] | 75 | class UntypedOffsetofExpr; | 
| [25a054f] | 76 | class OffsetofExpr; | 
| [afc1045] | 77 | class OffsetPackExpr; | 
| [51b73452] | 78 | class AttrExpr; | 
| 79 | class LogicalExpr; | |
| 80 | class ConditionalExpr; | |
| 81 | class CommaExpr; | |
| 82 | class TypeExpr; | |
| [7f5566b] | 83 | class AsmExpr; | 
| [db4ecc5] | 84 | class ImplicitCopyCtorExpr; | 
| [b6fe7e6] | 85 | class ConstructorExpr; | 
| [630a82a] | 86 | class CompoundLiteralExpr; | 
| [b6fe7e6] | 87 | class UntypedValofExpr; | 
| [8688ce1] | 88 | class RangeExpr; | 
| [907eccb] | 89 | class UntypedTupleExpr; | 
| [6eb8948] | 90 | class TupleExpr; | 
| [3b58d91] | 91 | class TupleIndexExpr; | 
| [6eb8948] | 92 | class TupleAssignExpr; | 
| 93 | class StmtExpr; | |
| [3c13c03] | 94 | class UniqueExpr; | 
| [e4d829b] | 95 | class UntypedInitExpr; | 
| 96 | class InitExpr; | |
| [51b73452] | 97 | |
| 98 | class Type; | |
| 99 | class VoidType; | |
| 100 | class BasicType; | |
| 101 | class PointerType; | |
| 102 | class ArrayType; | |
| [ce8c12f] | 103 | class ReferenceType; | 
| [51b73452] | 104 | class FunctionType; | 
| 105 | class ReferenceToType; | |
| 106 | class StructInstType; | |
| 107 | class UnionInstType; | |
| 108 | class EnumInstType; | |
| [4040425] | 109 | class TraitInstType; | 
| [51b73452] | 110 | class TypeInstType; | 
| 111 | class TupleType; | |
| 112 | class TypeofType; | |
| 113 | class AttrType; | |
| [44b7088] | 114 | class VarArgsType; | 
| [89e6ffc] | 115 | class ZeroType; | 
| 116 | class OneType; | |
| [51b73452] | 117 | |
| [e4d829b] | 118 | class Designation; | 
| [51b73452] | 119 | class Initializer; | 
| 120 | class SingleInit; | |
| 121 | class ListInit; | |
| [71f4e4f] | 122 | class ConstructorInit; | 
| [51b73452] | 123 | |
| 124 | class Subrange; | |
| 125 | ||
| 126 | //template <class T> // emulate a union with templates? | |
| 127 | class Constant; | |
| 128 | ||
| [0f8e4ac] | 129 | // typedef std::string Label; | 
| 130 | class Label; | |
| [51b73452] | 131 | typedef unsigned int UniqueId; | 
| 132 | ||
| 133 | class TypeSubstitution; | |
| 134 | ||
| [7baed7d] | 135 | // gcc attribute | 
| 136 | class Attribute; | |
| 137 | ||
| [0dd3a2f] | 138 | // Local Variables: // | 
| 139 | // tab-width: 4 // | |
| 140 | // mode: c++ // | |
| 141 | // compile-command: "make install" // | |
| 142 | // End: // | 
  Note:
 See   TracBrowser
 for help on using the repository browser.
    