From 8e85cf4ae9dda9da46865f564a4e1820103ebfdf Mon Sep 17 00:00:00 2001 From: snoglobe Date: Fri, 6 Dec 2024 00:52:53 +0000 Subject: [PATCH] `bun run clang-format` --- src/bun.js/bindings/webcore/JSEventEmitter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bun.js/bindings/webcore/JSEventEmitter.cpp b/src/bun.js/bindings/webcore/JSEventEmitter.cpp index 5766d02f59..5e877c7383 100644 --- a/src/bun.js/bindings/webcore/JSEventEmitter.cpp +++ b/src/bun.js/bindings/webcore/JSEventEmitter.cpp @@ -149,7 +149,8 @@ template<> JSC::EncodedJSValue JSC_HOST_CALL_ATTRIBUTES JSEventEmitterDOMConstru RETURN_IF_EXCEPTION(throwScope, {}); } Structure* structure = getDOMStructure(vm, globalObject) - JSEventEmitter* instance = JSEventEmitter::create(structure, reinterpret_cast(lexicalGlobalObject), object.copyRef()); + JSEventEmitter* instance + = JSEventEmitter::create(structure, reinterpret_cast(lexicalGlobalObject), object.copyRef()); RETURN_IF_EXCEPTION(throwScope, {}); RELEASE_AND_RETURN(throwScope, JSValue::encode(instance)); }