yusuf3000
10/17/2018, 12:45 PMruntime assert: Unknown open method mean in layman terms?yusuf3000
10/17/2018, 12:46 PMvoid* LookupOpenMethod(const TypeInfo* info, MethodNameHash nameSignature) {
  int bottom = 0;
  int top = info->openMethodsCount_ - 1;
  while (bottom <= top) {
    int middle = (bottom + top) / 2;
    if (info->openMethods_[middle].nameSignature_ < nameSignature)
      bottom = middle + 1;
    else if (info->openMethods_[middle].nameSignature_ == nameSignature)
      return info->openMethods_[middle].methodEntryPoint_;
    else
      top = middle - 1;
  }
  RuntimeAssert(false, "Unknown open method");
  return nullptr;
}
But not sure what this meansolonho
10/17/2018, 2:12 PM