From 485abb68f106fe77fed8d0ee4bb9e8534996e517 Mon Sep 17 00:00:00 2001 From: pfg Date: Fri, 14 Mar 2025 14:12:01 -0700 Subject: [PATCH] fix ifdef -> if --- src/bun.js/bindings/BunAnalyzeTranspiledModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bun.js/bindings/BunAnalyzeTranspiledModule.cpp b/src/bun.js/bindings/BunAnalyzeTranspiledModule.cpp index ec053d08b3..3c3d36e3da 100644 --- a/src/bun.js/bindings/BunAnalyzeTranspiledModule.cpp +++ b/src/bun.js/bindings/BunAnalyzeTranspiledModule.cpp @@ -203,7 +203,7 @@ extern "C" EncodedJSValue Bun__analyzeTranspiledModule(JSGlobalObject* globalObj RELEASE_AND_RETURN(scope, JSValue::encode(rejectWithError(createError(globalObject, WTF::String::fromLatin1("parseFromSourceCode failed"))))); } -#ifdef BUN_DEBUG +#if BUN_DEBUG RELEASE_AND_RETURN(scope, fallbackParse(globalObject, moduleKey, sourceCode, promise, moduleRecord)); #else promise->fulfillWithNonPromise(globalObject, moduleRecord);