Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.h

    r90c3b1c r5721a6d  
    1010// Created On       : Sat May 16 13:28:16 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Mar  2 14:00:06 2016
    13 // Update Count     : 189
     12// Last Modified On : Mon Feb  1 13:32:32 2016
     13// Update Count     : 184
    1414//
    1515
     
    331331        enum Aggregate { Struct, Union, Context };
    332332        enum TypeClass { Type, Dtype, Ftype };
    333         enum BuiltinType { Valist };
    334333
    335334        static const char *storageName[]; 
     
    339338        static const char *aggregateName[];
    340339        static const char *typeClassName[];
    341         static const char *builtinTypeName[];
    342340
    343341        static DeclarationNode *newFunction( std::string *name, DeclarationNode *ret, DeclarationNode *param, StatementNode *body, bool newStyle = false );
     
    365363        static DeclarationNode *newAttr( std::string *, ExpressionNode *expr );
    366364        static DeclarationNode *newAttr( std::string *, DeclarationNode *type );
    367         static DeclarationNode *newBuiltinType( BuiltinType );
    368365
    369366        DeclarationNode *addQualifiers( DeclarationNode *);
     
    404401        LinkageSpec::Type get_linkage() const { return linkage; }
    405402        DeclarationNode *extractAggregate() const;
    406         ExpressionNode *get_enumeratorValue() const { return enumeratorValue; }
    407403
    408404        DeclarationNode();
     
    417413        std::list< std::string > attributes;
    418414        ExpressionNode *bitfieldWidth;
    419         ExpressionNode *enumeratorValue;
    420415        InitializerNode *initializer;
    421416        bool hasEllipsis;
Note: See TracChangeset for help on using the changeset viewer.