Changes in / [478dade:29c8675]
- Files:
-
- 4 deleted
- 4 edited
-
src/ControlStruct/ExceptDecl.cpp (modified) (2 diffs)
-
src/GenPoly/Box.cpp (modified) (1 diff)
-
src/Validate/CheckAssertions.cpp (deleted)
-
src/Validate/CheckAssertions.hpp (deleted)
-
src/Validate/module.mk (modified) (1 diff)
-
src/main.cpp (modified) (2 diffs)
-
tests/.expect/var-assert.txt (deleted)
-
tests/var-assert.cfa (deleted)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ExceptDecl.cpp
r478dade r29c8675 9 9 // Author : Andrew Beach 10 10 // Created On : Tue Jul 12 15:50:00 2022 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Sat Sep 7 12:05:55 202413 // Update Count : 111 // Last Modified By : Andrew Beach 12 // Last Modified On : Mon Jul 18 11:01:00 2022 13 // Update Count : 0 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
r478dade r29c8675 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." );519 517 ast::FunctionType * adapter = ast::deepCopy( adaptee ); 520 518 if ( isDynRet( adapter, typeVars ) ) { -
src/Validate/module.mk
r478dade r29c8675 21 21 Validate/Autogen.cpp \ 22 22 Validate/Autogen.hpp \ 23 Validate/CheckAssertions.cpp \24 Validate/CheckAssertions.hpp \25 23 Validate/CompoundLiteral.cpp \ 26 24 Validate/CompoundLiteral.hpp \ -
src/main.cpp
r478dade r29c8675 67 67 #include "Tuples/Tuples.hpp" // for expandMemberTuples, expan... 68 68 #include "Validate/Autogen.hpp" // for autogenerateRoutines 69 #include "Validate/CheckAssertions.hpp" // for checkAssertions70 69 #include "Validate/CompoundLiteral.hpp" // for handleCompoundLiterals 71 70 #include "Validate/EliminateTypedef.hpp" // for eliminateTypedef … … 315 314 PASS( "Replace Typedefs", Validate::replaceTypedef, transUnit ); 316 315 PASS( "Fix Return Types", Validate::fixReturnTypes, transUnit ); 317 PASS( "Check Assertions", Validate::checkAssertions, transUnit );318 316 PASS( "Enum and Pointer Decay", Validate::decayEnumsAndPointers, transUnit ); 319 317
Note:
See TracChangeset
for help on using the changeset viewer.