Lines Matching refs:className
907 std::vector<ir::AstNode *> Transformer::CreateParamDecorators(util::StringView className, in CreateParamDecorators() argument
936 arguments.push_back(CreateDecoratorTarget(className, isConstructor || isStatic)); in CreateParamDecorators()
950 std::vector<ir::AstNode *> Transformer::CreatePropertyDecorators(util::StringView className, in CreatePropertyDecorators() argument
974 arguments.push_back(CreateDecoratorTarget(className, isStatic)); in CreatePropertyDecorators()
985 std::vector<ir::AstNode *> Transformer::CreateMethodDecorators(util::StringView className, in CreateMethodDecorators() argument
1014 arguments.push_back(CreateDecoratorTarget(className, isStatic)); in CreateMethodDecorators()
1018 …CreateDecoratorTarget(className, isStatic), GetClassMemberName(node->Key(), node->Computed(), node… in CreateMethodDecorators()
1029 auto *defineProperty = CreateDefinePropertyCall(CreateDecoratorTarget(className, isStatic), in CreateMethodDecorators()
1037 ir::Expression *Transformer::CreateDecoratorTarget(util::StringView className, bool isStatic) in CreateDecoratorTarget() argument
1040 return CreateReferenceIdentifier(className); in CreateDecoratorTarget()
1042 return CreateClassPrototype(className); in CreateDecoratorTarget()
1045 ir::MemberExpression *Transformer::CreateClassPrototype(util::StringView className) in CreateClassPrototype() argument
1047 auto *cls = CreateReferenceIdentifier(className); in CreateClassPrototype()