Home
last modified time | relevance | path

Searched refs:IsComputed (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_frontend/es2panda/ir/expressions/
DobjectExpression.cpp291 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()
DmemberExpression.h64 bool IsComputed() const in IsComputed() function
/arkcompiler/ets_frontend/es2panda/ir/base/
DclassProperty.h99 bool IsComputed() const in IsComputed() function
Dproperty.h94 bool IsComputed() const in IsComputed() function
Dproperty.cpp61 if (!IsComputed() && !IsMethod() && !IsAccessor() && !IsShorthand()) { in ValidateExpression()
/arkcompiler/ets_frontend/es2panda/typescript/core/
DtypeElaborationContext.cpp111 if (prop->IsComputed()) { in Start()
Dutil.cpp191 return !expr->AsMemberExpression()->IsComputed() in IsConstantMemberAccess()
DdestructuringContext.cpp648 if (property->IsComputed()) { in Start()
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp476 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/
DtsEnumDeclaration.cpp137 if (!expr->IsComputed()) { in EvaluateMemberExpression()
/arkcompiler/ets_frontend/es2panda/util/
Dhelpers.cpp537 Helpers::IsConstantPropertyKey(prop->Key(), prop->IsComputed())) { in FunctionName()