diff options
author | 2023-09-07 00:32:39 -0300 | |
---|---|---|
committer | 2023-09-07 00:32:39 -0300 | |
commit | 7eba3229fe8ed0f7ef01adbc5435ee061ec705cd (patch) | |
tree | daae6c21ae41f655555df2e38a8280845ea91a75 /src/js/out/InternalModuleRegistry+createInternalModuleById.h | |
parent | 5fe13cdaac984575311e2a3192e739e5d7850b26 (diff) | |
download | bun-7eba3229fe8ed0f7ef01adbc5435ee061ec705cd.tar.gz bun-7eba3229fe8ed0f7ef01adbc5435ee061ec705cd.tar.zst bun-7eba3229fe8ed0f7ef01adbc5435ee061ec705cd.zip |
initial bun repl revisionrepl
Diffstat (limited to 'src/js/out/InternalModuleRegistry+createInternalModuleById.h')
-rw-r--r-- | src/js/out/InternalModuleRegistry+createInternalModuleById.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/js/out/InternalModuleRegistry+createInternalModuleById.h b/src/js/out/InternalModuleRegistry+createInternalModuleById.h index a7b9c376e..755369c0e 100644 --- a/src/js/out/InternalModuleRegistry+createInternalModuleById.h +++ b/src/js/out/InternalModuleRegistry+createInternalModuleById.h @@ -18,6 +18,9 @@ JSValue InternalModuleRegistry::createInternalModuleById(JSGlobalObject* globalO case Field::InternalFSCp: { INTERNAL_MODULE_REGISTRY_GENERATE(globalObject, vm, "internal:fs/cp"_s, "internal/fs/cp.js"_s, InternalModuleRegistryConstants::InternalFSCpCode, "builtin://internal/fs/cp"_s); } + case Field::InternalRepl: { + INTERNAL_MODULE_REGISTRY_GENERATE(globalObject, vm, "internal:repl"_s, "internal/repl.js"_s, InternalModuleRegistryConstants::InternalReplCode, "builtin://internal/repl"_s); + } case Field::InternalShared: { INTERNAL_MODULE_REGISTRY_GENERATE(globalObject, vm, "internal:shared"_s, "internal/shared.js"_s, InternalModuleRegistryConstants::InternalSharedCode, "builtin://internal/shared"_s); } |