Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/SynTree.h

    r8688ce1 r7f5566b  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // SynTree.h --
     7// SynTree.h -- 
    88//
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Aug  3 17:02:34 2016
    13 // Update Count     : 7
     12// Last Modified On : Thu Jul 23 23:25:04 2015
     13// Update Count     : 3
    1414//
    1515
     
    3030class UnionDecl;
    3131class EnumDecl;
    32 class TraitDecl;
     32class ContextDecl;
    3333class NamedTypeDecl;
    3434class TypeDecl;
     
    4545class ForStmt;
    4646class SwitchStmt;
     47class ChooseStmt;
     48class FallthruStmt;
    4749class CaseStmt;
    4850class BranchStmt;
     
    5456class DeclStmt;
    5557class NullStmt;
    56 class ImplicitCtorDtorStmt;
    5758
    5859class Expression;
     
    6869class ConstantExpr;
    6970class SizeofExpr;
    70 class AlignofExpr;
    71 class UntypedOffsetofExpr;
    72 class OffsetofExpr;
    73 class OffsetPackExpr;
    7471class AttrExpr;
    7572class LogicalExpr;
     
    8077class TypeExpr;
    8178class AsmExpr;
    82 class ImplicitCopyCtorExpr;
    8379class UntypedValofExpr;
    84 class CompoundLiteralExpr;
    85 class RangeExpr;
    8680
    8781class Type;
     
    9589class UnionInstType;
    9690class EnumInstType;
    97 class TraitInstType;
     91class ContextInstType;
    9892class TypeInstType;
    9993class TupleType;
    10094class TypeofType;
    10195class AttrType;
    102 class VarArgsType;
    10396
    10497class Initializer;
    10598class SingleInit;
    10699class ListInit;
    107 class ConstructorInit;
    108100
    109101class Subrange;
     
    112104class Constant;
    113105
    114 // typedef std::string Label;
    115 class Label;
     106typedef std::string Label;
    116107typedef unsigned int UniqueId;
    117108
    118109class TypeSubstitution;
    119 
    120 // gcc attribute
    121 class Attribute;
    122110
    123111#endif // SYNTREE_H
Note: See TracChangeset for help on using the changeset viewer.