ADT
arm-eh
ast-experimental
cleanup-dtors
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since b96d7c1 was ee7a29f, checked in by Andrew Beach <ajbeach@…>, 6 years ago |
Added a draft of the ast forward file, including all node names.
|
-
Property mode
set to
100644
|
File size:
2.5 KB
|
Rev | Line | |
---|
[ee7a29f] | 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 | //
|
---|
| 7 | // Fwd.hpp -- Forward declarations of AST Types.
|
---|
| 8 | //
|
---|
| 9 | // Author : Andrew Beach
|
---|
| 10 | // Created On : Wed May 8 16:05:00 2019
|
---|
| 11 | // Last Modified By : Andrew Beach
|
---|
| 12 | // Last Modified On : Thr May 9 13:09:00 2019
|
---|
| 13 | // Update Count : 0
|
---|
| 14 | //
|
---|
| 15 |
|
---|
| 16 | #pragma once
|
---|
| 17 |
|
---|
| 18 | namespace ast {
|
---|
| 19 |
|
---|
| 20 | class Node;
|
---|
| 21 | class ParseNode;
|
---|
| 22 |
|
---|
| 23 | class Decl;
|
---|
| 24 | class DeclWithType;
|
---|
| 25 | class ObjectDecl;
|
---|
| 26 | class FunctionDecl;
|
---|
| 27 | class AggregateDecl;
|
---|
| 28 | class StructDecl;
|
---|
| 29 | class UnionDecl;
|
---|
| 30 | class EnumDecl;
|
---|
| 31 | class TraitDecl;
|
---|
| 32 | class NamedTypeDecl;
|
---|
| 33 | class TypeDecl;
|
---|
| 34 | class FtypeDecl;
|
---|
| 35 | class DtypeDecl;
|
---|
| 36 | class TypedefDecl;
|
---|
| 37 | class AsmDecl;
|
---|
| 38 | class StaticAssertDecl;
|
---|
| 39 |
|
---|
| 40 | class Stmt;
|
---|
| 41 | class CompoundStmt;
|
---|
| 42 | class ExprStmt;
|
---|
| 43 | class AsmStmt;
|
---|
| 44 | class DirectiveStmt;
|
---|
| 45 | class IfStmt;
|
---|
| 46 | class WhileStmt;
|
---|
| 47 | class ForStmt;
|
---|
| 48 | class SwitchStmt;
|
---|
| 49 | class CaseStmt;
|
---|
| 50 | class BranchStmt;
|
---|
| 51 | class ReturnStmt;
|
---|
| 52 | class ThrowStmt;
|
---|
| 53 | class TryStmt;
|
---|
| 54 | class CatchStmt;
|
---|
| 55 | class FinallyStmt;
|
---|
| 56 | class WaitForStmt;
|
---|
| 57 | class WithStmt;
|
---|
| 58 | class DeclStmt;
|
---|
| 59 | class NullStmt;
|
---|
| 60 | class ImplicitCtorDtorStmt;
|
---|
| 61 |
|
---|
| 62 | class Expr;
|
---|
| 63 | class ApplicationExpr;
|
---|
| 64 | class UntypedExpr;
|
---|
| 65 | class NameExpr;
|
---|
| 66 | class AddressExpr;
|
---|
| 67 | class LabelAddressExpr;
|
---|
| 68 | class CastExpr;
|
---|
| 69 | class KeywordCastExpr;
|
---|
| 70 | class VirtualCastExpr;
|
---|
| 71 | class MemberExpr;
|
---|
| 72 | class UntypedMemberExpr;
|
---|
| 73 | class VariableExpr;
|
---|
| 74 | class ConstantExpr;
|
---|
| 75 | class SizeofExpr;
|
---|
| 76 | class AlignofExpr;
|
---|
| 77 | class UntypedOffsetofExpr;
|
---|
| 78 | class OffsetofExpr;
|
---|
| 79 | class OffsetPackExpr;
|
---|
| 80 | class AttrExpr;
|
---|
| 81 | class LogicalExpr;
|
---|
| 82 | class ConditionalExpr;
|
---|
| 83 | class CommaExpr;
|
---|
| 84 | class TypeExpr;
|
---|
| 85 | class AsmExpr;
|
---|
| 86 | class ImplicitCopyCtorExpr;
|
---|
| 87 | class ConstructorExpr;
|
---|
| 88 | class CompoundLiteralExpr;
|
---|
| 89 | class UntypedValofExpr;
|
---|
| 90 | class RangeExpr;
|
---|
| 91 | class UntypedTupleExpr;
|
---|
| 92 | class TupleExpr;
|
---|
| 93 | class TupleIndexExpr;
|
---|
| 94 | class TupleAssignExpr;
|
---|
| 95 | class StmtExpr;
|
---|
| 96 | class UniqueExpr;
|
---|
| 97 | class UntypedInitExpr;
|
---|
| 98 | class InitExpr;
|
---|
| 99 | class DeletedExpr;
|
---|
| 100 | class DefaultArgExpr;
|
---|
| 101 | class GenericExpr;
|
---|
| 102 |
|
---|
| 103 | class Type;
|
---|
| 104 | class VoidType;
|
---|
| 105 | class BasicType;
|
---|
| 106 | class PointerType;
|
---|
| 107 | class ArrayType;
|
---|
| 108 | class ReferenceType;
|
---|
| 109 | class QualifiedType;
|
---|
| 110 | class FunctionType;
|
---|
| 111 | class ReferenceToType;
|
---|
| 112 | class StructInstType;
|
---|
| 113 | class UnionInstType;
|
---|
| 114 | class EnumInstType;
|
---|
| 115 | class TraitInstType;
|
---|
| 116 | class TypeInstType;
|
---|
| 117 | class TupleType;
|
---|
| 118 | class TypeofType;
|
---|
| 119 | class AttrType;
|
---|
| 120 | class VarArgsType;
|
---|
| 121 | class ZeroType;
|
---|
| 122 | class OneType;
|
---|
| 123 | class GlobalScopeType;
|
---|
| 124 |
|
---|
| 125 | class Designation;
|
---|
| 126 | class Init;
|
---|
| 127 | class SingleInit;
|
---|
| 128 | class ListInit;
|
---|
| 129 | class ConstructorInit;
|
---|
| 130 |
|
---|
| 131 | class Constant;
|
---|
| 132 |
|
---|
| 133 | class Label;
|
---|
| 134 |
|
---|
| 135 | class Attribute;
|
---|
| 136 |
|
---|
| 137 | class TypeSubstitution;
|
---|
| 138 |
|
---|
| 139 | typedef unsigned int UniqueId;
|
---|
| 140 |
|
---|
| 141 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.