- Timestamp:
- Feb 11, 2023, 8:12:25 PM (23 months ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- c97b448
- Parents:
- 966b4c6
- Location:
- src
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/module.mk
r966b4c6 rf26421f 20 20 Common/CodeLocationTools.hpp \ 21 21 Common/CodeLocationTools.cpp \ 22 Common/CompilerError.h \23 22 Common/Debug.h \ 24 23 Common/DeclStats.hpp \ … … 52 51 Common/Stats/Time.cc \ 53 52 Common/Stats/Time.h \ 54 Common/UnimplementedError.h \55 53 Common/UniqueName.cc \ 56 54 Common/UniqueName.h \ -
src/main.cc
r966b4c6 rf26421f 40 40 #include "CodeTools/TrackLoc.h" // for fillLocations 41 41 #include "Common/CodeLocationTools.hpp" // for forceFillCodeLocations 42 #include "Common/CompilerError.h" // for CompilerError43 42 #include "Common/DeclStats.hpp" // for printDeclStats 44 43 #include "Common/ResolvProtoDump.hpp" // for dumpAsResolverProto 45 44 #include "Common/Stats.h" // for Stats 46 #include "Common/UnimplementedError.h" // for UnimplementedError47 45 #include "Common/utility.h" // for deleteAll, filter, printAll 48 46 #include "Concurrency/Actors.hpp" // for implementActors … … 480 478 } // if 481 479 return EXIT_FAILURE; 482 } catch ( UnimplementedError & e ) {483 cout << "Sorry, " << e.get_what() << " is not currently implemented" << endl;484 if ( output != &cout ) {485 delete output;486 } // if487 return EXIT_FAILURE;488 } catch ( CompilerError & e ) {489 cerr << "Compiler Error: " << e.get_what() << endl;490 cerr << "(please report bugs to [REDACTED])" << endl;491 if ( output != &cout ) {492 delete output;493 } // if494 return EXIT_FAILURE;495 480 } catch ( std::bad_alloc & ) { 496 481 cerr << "*cfa-cpp compilation error* std::bad_alloc" << endl;
Note: See TracChangeset
for help on using the changeset viewer.