Changeset c194661 for src/Parser/TypeData.h
- Timestamp:
- Jun 20, 2018, 11:23:42 AM (5 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/TypeData.h
r9a7a3b6 rc194661 27 27 struct TypeData { 28 28 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 }; 30 30 31 31 struct Aggregate_t { … … 75 75 }; 76 76 77 struct Qualified_t { // qualified type S.T 78 TypeData * parent; 79 TypeData * child; 80 }; 81 77 82 CodeLocation location; 78 83 … … 94 99 Function_t function; 95 100 Symbolic_t symbolic; 101 Qualified_t qualified; 96 102 DeclarationNode * tuple; 97 103 ExpressionNode * typeexpr;
Note: See TracChangeset
for help on using the changeset viewer.