Changeset c86b08d for src/main.cc
- Timestamp:
- May 1, 2023, 4:06:07 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, stuck-waitfor-destruct
- Children:
- a33a5e2
- Parents:
- 73bf7ddc
- File:
-
- 1 edited
-
src/main.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r73bf7ddc rc86b08d 47 47 #include "Concurrency/Keywords.h" // for implementMutex, implement... 48 48 #include "Concurrency/Waitfor.h" // for generateWaitfor 49 #include "Concurrency/Waituntil.hpp" // for generateWaitUntil 49 50 #include "ControlStruct/ExceptDecl.h" // for translateExcept 50 51 #include "ControlStruct/ExceptTranslate.h" // for translateThrows, translat... … … 337 338 PASS( "Implement Concurrent Keywords", Concurrency::implementKeywords( transUnit ) ); 338 339 PASS( "Forall Pointer Decay", Validate::decayForallPointers( transUnit ) ); 340 PASS( "Implement Waituntil", Concurrency::generateWaitUntil( transUnit ) ); 339 341 PASS( "Hoist Control Declarations", ControlStruct::hoistControlDecls( transUnit ) ); 340 342 … … 343 345 PASS( "Implement Actors", Concurrency::implementActors( transUnit ) ); 344 346 PASS( "Implement Virtual Destructors", Virtual::implementVirtDtors(transUnit) ); 345 346 347 PASS( "Implement Mutex", Concurrency::implementMutex( transUnit ) ); 347 348 PASS( "Implement Thread Start", Concurrency::implementThreadStarter( transUnit ) );
Note:
See TracChangeset
for help on using the changeset viewer.