Changeset 3b0c8cb for src/SynTree


Ignore:
Timestamp:
Dec 5, 2019, 5:49:23 PM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
924c5ce
Parents:
1805b1b
Message:

Implemented Keyword cast in the alternative finder to remove aliassing problems

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Expression.h

    r1805b1b r3b0c8cb  
    231231        enum Target {
    232232                Coroutine, Thread, Monitor, NUMBER_OF_TARGETS
    233         } target;
     233        };
     234        struct Concrete {
     235                std::string field;
     236                std::string getter;
     237        };
     238        Target target;
     239        Concrete concrete_target;
    234240
    235241        KeywordCastExpr( Expression * arg, Target target );
Note: See TracChangeset for help on using the changeset viewer.