Changes in / [1d379b5:f33eab7]
- Location:
- src
- Files:
-
- 3 edited
-
AST/Pass.impl.hpp (modified) (1 diff)
-
AST/Pass.proto.hpp (modified) (1 diff)
-
ResolvExpr/Resolver.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.impl.hpp
r1d379b5 rf33eab7 423 423 } 424 424 catch( SemanticErrorException &e ) { 425 if (__pass::on _error (visitor.core, *i, 0))425 if (__pass::onError (visitor.core, *i, 0)) 426 426 errors.append( e ); 427 427 } -
src/AST/Pass.proto.hpp
r1d379b5 rf33eab7 270 270 271 271 template< typename core_t > 272 static bool on _error (core_t &, ptr<Decl> &, long) { return true; }273 274 template< typename core_t > 275 static auto on _error (core_t & core, ptr<Decl> & decl, int) -> decltype(core.on_error(decl)) {276 return core.on _error(decl);272 static bool onError (core_t &, ptr<Decl> &, long) { return true; } 273 274 template< typename core_t > 275 static auto onError (core_t & core, ptr<Decl> & decl, int) -> decltype(core.onError(decl)) { 276 return core.onError(decl); 277 277 } 278 278 -
src/ResolvExpr/Resolver.cc
r1d379b5 rf33eab7 1289 1289 void beginScope() { managedTypes.beginScope(); } 1290 1290 void endScope() { managedTypes.endScope(); } 1291 bool on _error(ast::ptr<ast::Decl> & decl);1291 bool onError(ast::ptr<ast::Decl> & decl); 1292 1292 }; 1293 1293 // size_t Resolver_new::traceId = Stats::Heap::new_stacktrace_id("Resolver"); … … 2068 2068 2069 2069 // suppress error on autogen functions and mark invalid autogen as deleted. 2070 bool Resolver_new::on _error(ast::ptr<ast::Decl> & decl) {2070 bool Resolver_new::onError(ast::ptr<ast::Decl> & decl) { 2071 2071 if (auto functionDecl = decl.as<ast::FunctionDecl>()) { 2072 2072 // xxx - can intrinsic gen ever fail?
Note:
See TracChangeset
for help on using the changeset viewer.