JS_ResolveStandardClass 编辑
Resolve a standard class in an object.
Syntax
bool
JS_ResolveStandardClass(JSContext *cx, JS::HandleObject obj, JS::HandleId id,
bool *resolved);
Name | Type | Description |
---|---|---|
cx | JSContext * | Pointer to the executable script context for which to initialize JS function and object classes. Requires request. In a JS_THREADSAFE build, the caller must be in a request on this JSContext . |
obj | JS::HandleObject | An object to resolve id to a standard class. |
id | JS::HandleId | An id of a standard class name, which must contain either a string or an int. |
resolved | bool * | Out parameter. If the id is resolved, true is stored into *resolved if success. false otherwise. |
Description
JS_ResolveStandardClass
resolves id
, which must contain either a string or an int, to a standard class name in obj
if possible, defining the class's constructor and/or prototype and storing true
in *resolved
. If id
does not name a standard class or a top-level property induced by initializing a standard class, store false
in *resolved
and just return true
. Return false
on error, as usual for bool result-typed API entry points.
This API can be called directly from a global object class's resolve op, to define standard classes lazily. The class's enumerate op should call
, to define eagerly during JS_EnumerateStandardClasses
(cx, obj)for...in
loops any classes not yet resolved lazily.
See Also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论