From 08cf0d562ae81b4fb30aa5e599ca76056582ac5f Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Thu, 3 Aug 2023 15:31:55 -0700 Subject: Bunch of fixes (#3516) * Fix #3497 * Fix #3497 * Run prettier * Fix package.json * remove this too * yeah * Fix missing tests * Use native for utf-8-validate * Add module ID names to builtins * Defer evaluation of ESM & CJS modules until link time * Use builtin name for exports in plugins * Add module IDs to builtins * Update JSC build with new flag * WebKit upgrade fixes * Update WebKit * prettier * Upgrade WebKit * bump * Update once again * Add visitAdditionalChildren, remove .fill() usage * Update process.test.js * Update fs.test.ts --------- Co-authored-by: dave caruso Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> --- src/bun.js/modules/UTF8ValidateModule.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/bun.js/modules/UTF8ValidateModule.h (limited to 'src/bun.js/modules/UTF8ValidateModule.h') diff --git a/src/bun.js/modules/UTF8ValidateModule.h b/src/bun.js/modules/UTF8ValidateModule.h new file mode 100644 index 000000000..18f309e63 --- /dev/null +++ b/src/bun.js/modules/UTF8ValidateModule.h @@ -0,0 +1,20 @@ + +using namespace JSC; +using namespace WebCore; + +namespace Zig { +inline void +generateNativeModule_UTF8Validate(JSC::JSGlobalObject *globalObject, + JSC::Identifier moduleKey, + Vector &exportNames, + JSC::MarkedArgumentBuffer &exportValues) { + auto &vm = globalObject->vm(); + + exportNames.append(vm.propertyNames->defaultKeyword); + exportValues.append(JSC::JSFunction::create( + vm, globalObject, 1, "utf8Validate"_s, jsBufferConstructorFunction_isUtf8, + ImplementationVisibility::Public, NoIntrinsic, + jsBufferConstructorFunction_isUtf8)); +} + +} // namespace Zig -- cgit v1.2.3