Home
last modified time | relevance | path

Searched refs:objPattern (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_frontend/es2panda/typescript/core/
DdestructuringContext.h56 void ValidateObjectLiteralType(ObjectType *objType, const ir::ObjectExpression *objPattern);
DdestructuringContext.cpp98 …ringContext::ValidateObjectLiteralType(ObjectType *objType, const ir::ObjectExpression *objPattern) in ValidateObjectLiteralType() argument
104 for (const auto *targetProp : objPattern->Properties()) { in ValidateObjectLiteralType()
121 objPattern->Start()); in ValidateObjectLiteralType()
/arkcompiler/ets_frontend/ets2panda/checker/ts/
DdestructuringContext.h68 void ValidateObjectLiteralType(ObjectType *objType, ir::ObjectExpression *objPattern);
DdestructuringContext.cpp99 …tructuringContext::ValidateObjectLiteralType(ObjectType *objType, ir::ObjectExpression *objPattern) in ValidateObjectLiteralType() argument
105 for (const auto *targetProp : objPattern->Properties()) { in ValidateObjectLiteralType()
122 objPattern->Start()); in ValidateObjectLiteralType()
/arkcompiler/ets_frontend/ets2panda/varbinder/
Dvarbinder.cpp318 auto *objPattern = childNode->AsObjectPattern(); in BuildVarDeclaratorId() local
320 for (auto *prop : objPattern->Properties()) { in BuildVarDeclaratorId()
324 BuildSignatureDeclarationBaseParams(objPattern->TypeAnnotation()); in BuildVarDeclaratorId()
/arkcompiler/ets_frontend/es2panda/binder/
Dbinder.cpp466 auto *objPattern = childNode->AsObjectPattern(); in BuildVarDeclaratorId() local
468 for (auto *prop : objPattern->Properties()) { in BuildVarDeclaratorId()
472 … BuildTSSignatureDeclarationBaseParamsWithParent(objPattern, objPattern->TypeAnnotation()); in BuildVarDeclaratorId()