bun run clang-format

This commit is contained in:
snoglobe
2024-12-06 00:52:53 +00:00
committed by github-actions[bot]
parent c54551e2ed
commit 8e85cf4ae9

View File

@@ -149,7 +149,8 @@ template<> JSC::EncodedJSValue JSC_HOST_CALL_ATTRIBUTES JSEventEmitterDOMConstru
RETURN_IF_EXCEPTION(throwScope, {});
}
Structure* structure = getDOMStructure<JSEventEmitter>(vm, globalObject)
JSEventEmitter* instance = JSEventEmitter::create(structure, reinterpret_cast<Zig::GlobalObject*>(lexicalGlobalObject), object.copyRef());
JSEventEmitter* instance
= JSEventEmitter::create(structure, reinterpret_cast<Zig::GlobalObject*>(lexicalGlobalObject), object.copyRef());
RETURN_IF_EXCEPTION(throwScope, {});
RELEASE_AND_RETURN(throwScope, JSValue::encode(instance));
}