JSValue jsAudioProcessingEventOutputBuffer(ExecState* exec, JSValue slotBase, const Identifier&) { JSAudioProcessingEvent* castedThis = static_cast<JSAudioProcessingEvent*>(asObject(slotBase)); UNUSED_PARAM(exec); AudioProcessingEvent* imp = static_cast<AudioProcessingEvent*>(castedThis->impl()); JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->outputBuffer())); return result; }
EncodedJSValue jsAudioProcessingEventConstructor(ExecState* exec, EncodedJSValue thisValue, EncodedJSValue, PropertyName) { JSAudioProcessingEvent* domObject = jsDynamicCast<JSAudioProcessingEvent*>(JSValue::decode(thisValue)); if (!domObject) return throwVMTypeError(exec); if (!domObject) return throwVMTypeError(exec); return JSValue::encode(JSAudioProcessingEvent::getConstructor(exec->vm(), domObject->globalObject())); }
EncodedJSValue jsAudioProcessingEventOutputBuffer(ExecState* exec, EncodedJSValue slotBase, EncodedJSValue thisValue, PropertyName) { JSAudioProcessingEvent* castedThis = jsDynamicCast<JSAudioProcessingEvent*>(JSValue::decode(thisValue)); UNUSED_PARAM(slotBase); if (!castedThis) return throwVMTypeError(exec); UNUSED_PARAM(exec); AudioProcessingEvent& impl = castedThis->impl(); JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(impl.outputBuffer())); return JSValue::encode(result); }
JSValue jsAudioProcessingEventConstructor(ExecState* exec, JSValue slotBase, const Identifier&) { JSAudioProcessingEvent* domObject = static_cast<JSAudioProcessingEvent*>(asObject(slotBase)); return JSAudioProcessingEvent::getConstructor(exec, domObject->globalObject()); }