Ignore:
Timestamp:
Jun 20, 2018, 11:23:42 AM (6 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
0b3b2ae
Parents:
9a7a3b6
Message:

Reorganize QualifiedType? node

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/TypeData.h

    r9a7a3b6 rc194661  
    2727struct TypeData {
    2828        enum Kind { Basic, Pointer, Array, Reference, Function, Aggregate, AggregateInst, Enum, EnumConstant, Symbolic,
    29                                 SymbolicInst, Tuple, Typeof, Builtin, GlobalScope, Unknown };
     29                                SymbolicInst, Tuple, Typeof, Builtin, GlobalScope, Qualified, Unknown };
    3030
    3131        struct Aggregate_t {
     
    7575        };
    7676
     77        struct Qualified_t { // qualified type S.T
     78                TypeData * parent;
     79                TypeData * child;
     80        };
     81
    7782        CodeLocation location;
    7883
     
    9499        Function_t function;
    95100        Symbolic_t symbolic;
     101        Qualified_t qualified;
    96102        DeclarationNode * tuple;
    97103        ExpressionNode * typeexpr;
Note: See TracChangeset for help on using the changeset viewer.