本文整理汇总了C++中JSWorkerLocation类的典型用法代码示例。如果您正苦于以下问题:C++ JSWorkerLocation类的具体用法?C++ JSWorkerLocation怎么用?C++ JSWorkerLocation使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了JSWorkerLocation类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: finalize
void JSWorkerLocationOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
{
JSWorkerLocation* jsWorkerLocation = jsCast<JSWorkerLocation*>(handle.get().asCell());
DOMWrapperWorld& world = *static_cast<DOMWrapperWorld*>(context);
uncacheWrapper(world, &jsWorkerLocation->impl(), jsWorkerLocation);
jsWorkerLocation->releaseImpl();
}
示例2: isReachableFromOpaqueRoots
bool JSWorkerLocationOwner::isReachableFromOpaqueRoots(JSC::Handle<JSC::Unknown> handle, void*, SlotVisitor& visitor)
{
JSWorkerLocation* jsWorkerLocation = jsCast<JSWorkerLocation*>(handle.get().asCell());
if (!isObservable(jsWorkerLocation))
return false;
WorkerLocation* root = &jsWorkerLocation->impl();
return visitor.containsOpaqueRoot(root);
}
示例3: jsWorkerLocationHash
JSValue jsWorkerLocationHash(ExecState* exec, JSValue slotBase, const Identifier&)
{
JSWorkerLocation* castedThis = static_cast<JSWorkerLocation*>(asObject(slotBase));
UNUSED_PARAM(exec);
WorkerLocation* imp = static_cast<WorkerLocation*>(castedThis->impl());
JSValue result = jsString(exec, imp->hash());
return result;
}
示例4: jsWorkerLocationConstructor
EncodedJSValue jsWorkerLocationConstructor(ExecState* exec, EncodedJSValue thisValue, EncodedJSValue, PropertyName)
{
JSWorkerLocation* domObject = jsDynamicCast<JSWorkerLocation*>(JSValue::decode(thisValue));
if (!domObject)
return throwVMTypeError(exec);
if (!domObject)
return throwVMTypeError(exec);
return JSValue::encode(JSWorkerLocation::getConstructor(exec->vm(), domObject->globalObject()));
}
示例5: jsWorkerLocationHash
EncodedJSValue jsWorkerLocationHash(ExecState* exec, EncodedJSValue slotBase, EncodedJSValue thisValue, PropertyName)
{
JSWorkerLocation* castedThis = jsDynamicCast<JSWorkerLocation*>(JSValue::decode(thisValue));
UNUSED_PARAM(slotBase);
if (!castedThis)
return throwVMTypeError(exec);
UNUSED_PARAM(exec);
WorkerLocation& impl = castedThis->impl();
JSValue result = jsStringWithCache(exec, impl.hash());
return JSValue::encode(result);
}
示例6: jsWorkerLocationPrototypeFunctionToString
EncodedJSValue JSC_HOST_CALL jsWorkerLocationPrototypeFunctionToString(ExecState* exec)
{
JSValue thisValue = exec->hostThisValue();
JSWorkerLocation* castedThis = jsDynamicCast<JSWorkerLocation*>(thisValue);
if (!castedThis)
return throwVMTypeError(exec);
ASSERT_GC_OBJECT_INHERITS(castedThis, JSWorkerLocation::info());
WorkerLocation& impl = castedThis->impl();
JSC::JSValue result = jsStringWithCache(exec, impl.toString());
return JSValue::encode(result);
}
示例7: jsWorkerLocationPrototypeFunctionToString
JSValue JSC_HOST_CALL jsWorkerLocationPrototypeFunctionToString(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args)
{
UNUSED_PARAM(args);
if (!thisValue.inherits(&JSWorkerLocation::s_info))
return throwError(exec, TypeError);
JSWorkerLocation* castedThisObj = static_cast<JSWorkerLocation*>(asObject(thisValue));
WorkerLocation* imp = static_cast<WorkerLocation*>(castedThisObj->impl());
JSC::JSValue result = jsString(exec, imp->toString());
return result;
}
示例8: jsWorkerLocationPrototypeFunctionToString
EncodedJSValue JSC_HOST_CALL jsWorkerLocationPrototypeFunctionToString(ExecState* exec)
{
JSValue thisValue = exec->hostThisValue();
if (!thisValue.inherits(&JSWorkerLocation::s_info))
return throwVMTypeError(exec);
JSWorkerLocation* castedThis = static_cast<JSWorkerLocation*>(asObject(thisValue));
ASSERT_GC_OBJECT_INHERITS(castedThis, &JSWorkerLocation::s_info);
WorkerLocation* imp = static_cast<WorkerLocation*>(castedThis->impl());
JSC::JSValue result = jsString(exec, imp->toString());
return JSValue::encode(result);
}
示例9: jsWorkerLocationConstructor
JSValue jsWorkerLocationConstructor(ExecState* exec, JSValue slotBase, const Identifier&)
{
JSWorkerLocation* domObject = static_cast<JSWorkerLocation*>(asObject(slotBase));
return JSWorkerLocation::getConstructor(exec, domObject->globalObject());
}