Searched refs:IsComputed (Results 1 – 11 of 11) sorted by relevance
/arkcompiler/ets_frontend/es2panda/ir/expressions/ |
D | objectExpression.cpp | 291 if (!util::Helpers::IsConstantPropertyKey(prop->Key(), prop->IsComputed()) || in CompileStaticProperties() 366 compiler::VReg key = pg->LoadPropertyKey(prop->Key(), prop->IsComputed()); in CompileRemainingProperties() 386 … pg->DefineGetterSetterByValue(this, objReg, key, getter, setter, prop->IsComputed()); in CompileRemainingProperties() 390 compiler::Operand key = pg->ToPropertyKey(prop->Key(), prop->IsComputed()); in CompileRemainingProperties() 395 if (prop->IsComputed()) { in CompileRemainingProperties() 399 if (prop->IsComputed()) { in CompileRemainingProperties() 464 if (prop->IsComputed()) { in CheckPattern() 645 if (prop->IsComputed()) { in Check()
|
D | memberExpression.h | 64 bool IsComputed() const in IsComputed() function
|
/arkcompiler/ets_frontend/es2panda/ir/base/ |
D | classProperty.h | 99 bool IsComputed() const in IsComputed() function
|
D | property.h | 94 bool IsComputed() const in IsComputed() function
|
D | property.cpp | 61 if (!IsComputed() && !IsMethod() && !IsAccessor() && !IsShorthand()) { in ValidateExpression()
|
/arkcompiler/ets_frontend/es2panda/typescript/core/ |
D | typeElaborationContext.cpp | 111 if (prop->IsComputed()) { in Start()
|
D | util.cpp | 191 return !expr->AsMemberExpression()->IsComputed() in IsConstantMemberAccess()
|
D | destructuringContext.cpp | 648 if (property->IsComputed()) { in Start()
|
/arkcompiler/ets_frontend/es2panda/parser/transformer/ |
D | transformer.cpp | 476 if (!classProperty->IsComputed()) { in VisitComputedProperty() 604 if (it->IsComputed()) { in VisitInstanceProperty() 609 auto *member = GetClassMemberName(it->Key(), it->IsComputed(), it, false); in VisitInstanceProperty() 610 if (member->IsIdentifier() && !it->IsComputed()) { in VisitInstanceProperty() 711 if (classProperty->IsComputed()) { in VisitStaticProperty() 720 …auto *member = GetClassMemberName(classProperty->Key(), classProperty->IsComputed(), classProperty… in VisitStaticProperty() 721 if (member->IsIdentifier() && !classProperty->IsComputed()) { in VisitStaticProperty() 804 if (classProperty->IsComputed() && !isStatic && classProperty->Value() == nullptr) { in VisitClassDeclaration() 975 arguments.push_back(GetClassMemberName(node->Key(), node->IsComputed(), node)); in CreatePropertyDecorators()
|
/arkcompiler/ets_frontend/es2panda/ir/ts/ |
D | tsEnumDeclaration.cpp | 137 if (!expr->IsComputed()) { in EvaluateMemberExpression()
|
/arkcompiler/ets_frontend/es2panda/util/ |
D | helpers.cpp | 537 Helpers::IsConstantPropertyKey(prop->Key(), prop->IsComputed())) { in FunctionName()
|