Lines Matching defs:method
111 // Note: we need to create and set function/method type here because the general method `BuildMethodSignature(...)`
162 // NOTE: we already have custom-implemented method with the required bridge signature.
212 auto *const method = item->AsMethodDefinition();
213 if (method->Kind() != ir::MethodDefinitionKind::METHOD || method->IsStatic() || method->IsFinal() ||
214 method->Id()->Name().Utf8().find("lambda$invoke$") != std::string_view::npos) {
218 // Check if the derived class has any possible overrides of this method
220 classBody.cbegin(), classBody.end(), [&name = method->Id()->Name()](ir::AstNode const *node) -> bool {
224 MaybeAddGenericBridges(classDefinition, method, (*it)->AsMethodDefinition(), substitutions);