- Timestamp:
- Jul 20, 2021, 4:24:43 AM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 00da199
- Parents:
- f9b68d6
- Location:
- src
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/module.mk
rf9b68d6 r0c730d9 10 10 ## Author : Richard C. Bilson 11 11 ## Created On : Mon Jun 1 17:49:17 2015 12 ## Last Modified By : Andrew Beach13 ## Last Modified On : Wed Jun 28 16:15:00 201714 ## Update Count : 412 ## Last Modified By : Henry Xue 13 ## Last Modified On : Tue Jul 20 04:10:50 2021 14 ## Update Count : 5 15 15 ############################################################################### 16 16 17 17 SRC_CONTROLSTRUCT = \ 18 ControlStruct/ExceptDecl.cc \ 19 ControlStruct/ExceptDecl.h \ 18 20 ControlStruct/ForExprMutator.cc \ 19 21 ControlStruct/ForExprMutator.h \ -
src/Parser/TypeData.cc
rf9b68d6 r0c730d9 9 9 // Author : Rodolfo G. Esteves 10 10 // Created On : Sat May 16 15:12:51 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Wed Jul 14 18:57:31202113 // Update Count : 67 211 // Last Modified By : Henry Xue 12 // Last Modified On : Tue Jul 20 04:10:50 2021 13 // Update Count : 673 14 14 // 15 15 … … 778 778 case AggregateDecl::Struct: 779 779 case AggregateDecl::Coroutine: 780 case AggregateDecl::Exception: 780 781 case AggregateDecl::Generator: 781 782 case AggregateDecl::Monitor: -
src/SynTree/Declaration.h
rf9b68d6 r0c730d9 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Fri Mar 12 18:35:36202113 // Update Count : 1 5911 // Last Modified By : Henry Xue 12 // Last Modified On : Tue Jul 20 04:10:50 2021 13 // Update Count : 160 14 14 // 15 15 … … 300 300 301 301 bool is_coroutine() { return kind == Coroutine; } 302 bool is_exception() { return kind == Exception; } 302 303 bool is_generator() { return kind == Generator; } 303 304 bool is_monitor () { return kind == Monitor ; } -
src/main.cc
rf9b68d6 r0c730d9 9 9 // Author : Peter Buhr and Rob Schluntz 10 10 // Created On : Fri May 15 23:12:02 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Sat Mar 6 15:49:00 202113 // Update Count : 65 611 // Last Modified By : Henry Xue 12 // Last Modified On : Tue Jul 20 04:10:50 2021 13 // Update Count : 657 14 14 // 15 15 … … 49 49 #include "Common/utility.h" // for deleteAll, filter, printAll 50 50 #include "Concurrency/Waitfor.h" // for generateWaitfor 51 #include "ControlStruct/ExceptDecl.h" // for translateExcept 51 52 #include "ControlStruct/ExceptTranslate.h" // for translateEHM 52 53 #include "ControlStruct/Mutate.h" // for mutate … … 305 306 CodeTools::fillLocations( translationUnit ); 306 307 Stats::Time::StopBlock(); 308 309 PASS( "Translate Exception Declarations", ControlStruct::translateExcept( translationUnit ) ); 307 310 308 311 // add the assignment statement after the initialization of a type parameter
Note: See TracChangeset
for help on using the changeset viewer.