chakra-core/ChakraCore

JSRT: JsDeleteIndexedProperty does not tell successful or not

Open

#504 创建于 2016年3月10日

在 GitHub 查看
 (10 评论) (0 反应) (0 负责人)JavaScript (1,374 fork)batch import
APIsBugSeverity: 3good first issuehelp wanted

仓库指标

Star
 (9,000 star)
PR 合并指标
 (30 天内没有已合并 PR)

描述

JsDeleteIndexedProperty API does not tell if the deletion is successful or not, unlike JsDeleteProperty which returns that info in "result". The former also misses "useStrictRules" flag which exists in the later.

JsDeleteIndexedProperty(JsValueRef object, JsValueRef index)

JsDeleteProperty(JsValueRef object, JsPropertyIdRef propertyId,
                 bool useStrictRules,
                 JsValueRef *result)

These 2 APIs should be comparable and consistent.

贡献者指南