source: src/SynTree/SynTree.h @ 3d2b7bc

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumwith_gc
Last change on this file since 3d2b7bc was 44b4114, checked in by Rob Schluntz <rschlunt@…>, 6 years ago

Add DeletedExpr? node for use of deleted identifiers

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