Lines Matching refs:isStatic
1132 bool isStatic = definition->IsStatic();
1135 if (isStatic) {
1142 auto paramDecorators = CreateParamDecorators(name, definition, variableDeclarations, false, isStatic);
1143 if (isStatic) {
1154 auto methodDecorators = CreateMethodDecorators(name, definition, variableDeclarations, isStatic);
1155 if (isStatic) {
1162 if (hasPrivateIdentifier && !isStatic) {
1178 bool isStatic = classProperty->IsStatic();
1183 if (classProperty->IsComputed() && !isStatic && classProperty->Value() == nullptr) {
1188 if (isStatic) {
1195 auto propertyDecorators = CreatePropertyDecorators(name, classProperty, variableDeclarations, isStatic);
1196 if (isStatic) {
1203 if (hasPrivateIdentifier && !isStatic) {
1400 bool isStatic)
1425 arguments.push_back(CreateDecoratorTarget(className, isConstructor || isStatic));
1442 bool isStatic)
1463 arguments.push_back(CreateDecoratorTarget(className, isStatic));
1477 bool isStatic)
1503 arguments.push_back(CreateDecoratorTarget(className, isStatic));
1507 CreateDecoratorTarget(className, isStatic), GetClassMemberName(node->Key(), node->Computed(), node));
1518 auto *defineProperty = CreateDefinePropertyCall(CreateDecoratorTarget(className, isStatic),
1526 ir::Expression *Transformer::CreateDecoratorTarget(util::StringView className, bool isStatic)
1528 if (isStatic) {