Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/ResolveAssertions.cc

    raca6a54c r2fb35df  
    277277                        const DeclarationWithType * candidate = cdata.id;
    278278
    279                         // build independent unification context for candidate
     279                        // ignore deleted candidates.
     280                        // NOTE: this behavior is different from main resolver.
     281                        // further investigations might be needed to determine
     282                        // if we should implement the same rule here
     283                        // (i.e. error if unique best match is deleted)
     284                        if (candidate->isDeleted) continue;
     285
     286                        // build independent unification context. for candidate
    280287                        AssertionSet have, newNeed;
    281288                        TypeEnvironment newEnv{ resn.alt.env };
     
    390397
    391398        /// Limit to depth of recursion of assertion satisfaction
    392         static const int recursionLimit = 7;
     399        static const int recursionLimit = 4;
    393400        /// Maximum number of simultaneously-deferred assertions to attempt concurrent satisfaction of
    394401        static const int deferLimit = 10;
Note: See TracChangeset for help on using the changeset viewer.