Parent: #134 Related: #140, #163, #164 Implement the shared raw numeric helper declared by pinned Home/Bun `jsc.zig` and defined as a direct JavaScriptCore `operationMathPow` call. Acceptance: - [x] Export `Bun__JSC__operationMathPow(f64, f64) f64` with the exact C signature. - [x] Share one implementation with JavaScript `Math.pow` so the private ABI and language builtin cannot drift. - [x] Match ECMAScript/JSC edge behavior for NaN, infinities, signed zero, negative finite bases, fractional exponents, and odd/even integer exponents. - [x] Add focused engine and compiled Home/Bun consumer evidence in Debug and ReleaseSafe. - [x] Refresh inventories/docs and parent issue evidence.
Parent: #134
Related: #140, #163, #164
Implement the shared raw numeric helper declared by pinned Home/Bun
jsc.zigand defined as a direct JavaScriptCoreoperationMathPowcall.Acceptance:
Bun__JSC__operationMathPow(f64, f64) f64with the exact C signature.Math.powso the private ABI and language builtin cannot drift.