Lines Matching refs:Name
79 …TypeStackElement tse(this, type, {"Cyclic inheritance involving ", type->Name(), "."}, classDef->I… in GetSuperType()
84 … ThrowTypeError({"The super type of '", classDef->Ident()->Name(), "' class is not extensible."}, in GetSuperType()
92 …ThrowTypeError({"struct ", classDef->Ident()->Name(), " is not extensible."}, classDef->Super()->S… in GetSuperType()
146 …TypeStackElement tse(this, type, {"Cyclic inheritance involving ", type->Name(), "."}, declNode->I… in GetInterfacesOfInterface()
180 constraint->AsETSTypeReference()->Part()->Name()->IsIdentifier()) { in CreateTypeForTypeParameters()
200 const auto typeParamName = param->Name()->Name().Utf8(); in CheckTypeParameterConstraint()
202 param->Constraint()->AsETSTypeReference()->Part()->Name()->AsIdentifier()->Name().Utf8(); in CheckTypeParameterConstraint()
229 auto *const type = param->Name()->Variable()->TsType(); in SetUpTypeParameterConstraint()
238 … const auto typeName = typeNode->AsETSTypeReference()->Part()->Name()->AsIdentifier()->Name(); in SetUpTypeParameterConstraint()
273 param->Name()->Variable()->SetTsType(paramType); in SetUpParameterType()
297 interfaceType = CreateETSObjectType(var->Name(), interfaceDecl, in BuildInterfaceProperties()
329 const util::StringView &className = classDef->Ident()->Name(); in BuildClassProperties()
380 …auto classType = CreateETSObjectType(classDef->Ident()->Name(), classDef, checker::ETSObjectFlags:… in BuildAnonymousClassProperties()
531 …auto *typeDecl = typeAnnotation->AsETSTypeReference()->Part()->Name()->AsIdentifier()->Variable()-… in HasETSFunctionType()
568 auto name = it->Function()->Id()->Name(); in CreateFunctionTypesFromAbstracts()
721 if (field->Name() == (*it)->Name()) { in ValidateOverriding()
736 … ThrowTypeError({classType->Name(), " is not abstract and does not override abstract method ", in ValidateOverriding()
737 … unimplementedSignature->Function()->Id()->Name(), unimplementedSignature, " in ", in ValidateOverriding()
757 if (signature->Function()->Id()->Name() == it->Name()) { in AddImplementedSignature()
918 …ThrowTypeError({"Variable '", classVar->Declaration()->Name(), "' might already have been initiali… in FindAssignment()
951 …ThrowTypeError({"Variable '", classVar->Declaration()->Name(), "' might not have been initialized"… in CheckConstFieldInitialized()
1002 message << expressionType->Variable()->Name(); in ValidateArrayIndex()
1160 const auto *const newProp = target->GetProperty(ident->Name(), newFlags); in ValidateResolvedProperty()
1162 … ThrowTypeError({"Property '", ident->Name(), "' does not exist on type '", target->Name(), "'"}, in ValidateResolvedProperty()
1166 …ThrowTypeError({"'", ident->Name(), "' is a static property of '", target->Name(), "'"}, ident->St… in ValidateResolvedProperty()
1168 …ThrowTypeError({"'", ident->Name(), "' is an instance property of '", target->Name(), "'"}, ident-… in ValidateResolvedProperty()
1176 ->FindInGlobal(memberExpr->Property()->AsIdentifier()->Name(), in ResolveInstanceExtension()
1311 ThrowTypeError({"Cannot infer type for ", target_ident->Name(), in ValidateVarDeclaratorOrClassProperty()
1321 …ThrowTypeError({"Method ", memberExpr->Property()->AsIdentifier()->Name(), " does not exist on thi… in ValidateVarDeclaratorOrClassProperty()
1334 auto propName = memberExpr->Property()->AsIdentifier()->Name(); in ResolveMemberReference()
1347 …auto *const prop = target->GetProperty(memberExpr->Property()->AsIdentifier()->Name(), searchFlag); in ResolveMemberReference()
1421 auto *found = classType->SuperType()->GetProperty(it->Name(), searchFlag); in CheckValidInheritance()
1427 auto *propertyFound = interface->GetProperty(it->Name(), searchFlag); in CheckValidInheritance()
1456 …ThrowTypeError({"Cannot inherit from interface ", interfaceFound->Name(), " because ", targetType,… in CheckValidInheritance()
1457 it->Name(), " is inherited with a different declaration type"}, in CheckValidInheritance()
1460 …ThrowTypeError({"Cannot inherit from class ", classType->SuperType()->Name(), ", because ", target… in CheckValidInheritance()
1461 it->Name(), " is inherited with a different declaration type"}, in CheckValidInheritance()
1664 classType->Name(), " is not allowed."}, in CheckInvokeMethodsLegitimacy()