Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.h

    rc8dfcd3 r7d05e7e  
    1010// Created On       : Sat May 16 13:28:16 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Aug 28 21:14:51 2016
    13 // Update Count     : 575
     12// Last Modified On : Thu Sep  8 21:58:06 2016
     13// Update Count     : 587
    1414//
    1515
     
    290290        // bool buildFuncSpecifier( StorageClass key ) const;
    291291
     292        struct Variable_t {
     293                DeclarationNode::TypeClass tyClass;
     294                std::string name;
     295                DeclarationNode * assertions;
     296        };
     297        Variable_t variable;
     298
     299        struct Attr_t {
     300                std::string name;
     301                ExpressionNode * expr;
     302                DeclarationNode * type;
     303        };
     304        Attr_t attr;
     305
     306        BuiltinType builtin;
     307
    292308        TypeData *type;
    293309        std::string name;
     
    386402                        if ( result ) {
    387403                                *out++ = result;
    388                         } else {
    389404                        } // if
    390405                } catch( SemanticError &e ) {
Note: See TracChangeset for help on using the changeset viewer.