- Timestamp:
- Sep 9, 2024, 6:30:08 AM (2 months ago)
- Branches:
- master
- Children:
- 02101a4, d93b813
- Parents:
- 29c8675 (diff), a933489b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- src
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ExceptDecl.cpp
r29c8675 r478dade 9 9 // Author : Andrew Beach 10 10 // Created On : Tue Jul 12 15:50:00 2022 11 // Last Modified By : Andrew Beach12 // Last Modified On : Mon Jul 18 11:01:00 202213 // Update Count : 011 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Sep 7 12:05:55 2024 13 // Update Count : 1 14 14 // 15 15 … … 286 286 new ast::ExprStmt( location, 287 287 new ast::UntypedExpr( location, 288 new ast::NameExpr( location, "? =?" ),288 new ast::NameExpr( location, "?{}" ), 289 289 { 290 290 new ast::UntypedExpr( location, -
src/GenPoly/Box.cpp
r29c8675 r478dade 515 515 ast::FunctionType const * adaptee, 516 516 TypeVarMap const & typeVars ) { 517 assertf( ast::FixedArgs == adaptee->isVarArgs, 518 "Cannot adapt a varadic function, should have been checked." ); 517 519 ast::FunctionType * adapter = ast::deepCopy( adaptee ); 518 520 if ( isDynRet( adapter, typeVars ) ) { -
src/Validate/module.mk
r29c8675 r478dade 21 21 Validate/Autogen.cpp \ 22 22 Validate/Autogen.hpp \ 23 Validate/CheckAssertions.cpp \ 24 Validate/CheckAssertions.hpp \ 23 25 Validate/CompoundLiteral.cpp \ 24 26 Validate/CompoundLiteral.hpp \ -
src/main.cpp
r29c8675 r478dade 67 67 #include "Tuples/Tuples.hpp" // for expandMemberTuples, expan... 68 68 #include "Validate/Autogen.hpp" // for autogenerateRoutines 69 #include "Validate/CheckAssertions.hpp" // for checkAssertions 69 70 #include "Validate/CompoundLiteral.hpp" // for handleCompoundLiterals 70 71 #include "Validate/EliminateTypedef.hpp" // for eliminateTypedef … … 314 315 PASS( "Replace Typedefs", Validate::replaceTypedef, transUnit ); 315 316 PASS( "Fix Return Types", Validate::fixReturnTypes, transUnit ); 317 PASS( "Check Assertions", Validate::checkAssertions, transUnit ); 316 318 PASS( "Enum and Pointer Decay", Validate::decayEnumsAndPointers, transUnit ); 317 319
Note: See TracChangeset
for help on using the changeset viewer.