@zappdev/cli 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -21
- package/dist/zapp-cli.js +38 -3
- package/native/src/app/app.zc +30 -7
- package/native/src/cli/node_modules/@esbuild/darwin-arm64/README.md +3 -0
- package/native/src/cli/node_modules/@esbuild/darwin-arm64/bin/esbuild +0 -0
- package/native/src/cli/node_modules/@esbuild/darwin-arm64/package.json +20 -0
- package/native/src/cli/node_modules/@types/bun/LICENSE +21 -0
- package/native/src/cli/node_modules/@types/bun/README.md +20 -0
- package/native/src/cli/node_modules/@types/bun/index.d.ts +1 -0
- package/native/src/cli/node_modules/@types/bun/package.json +53 -0
- package/native/src/cli/node_modules/@types/node/LICENSE +21 -0
- package/native/src/cli/node_modules/@types/node/README.md +15 -0
- package/native/src/cli/node_modules/@types/node/assert/strict.d.ts +111 -0
- package/native/src/cli/node_modules/@types/node/assert.d.ts +1078 -0
- package/native/src/cli/node_modules/@types/node/async_hooks.d.ts +603 -0
- package/native/src/cli/node_modules/@types/node/buffer.buffer.d.ts +472 -0
- package/native/src/cli/node_modules/@types/node/buffer.d.ts +1934 -0
- package/native/src/cli/node_modules/@types/node/child_process.d.ts +1476 -0
- package/native/src/cli/node_modules/@types/node/cluster.d.ts +578 -0
- package/native/src/cli/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
- package/native/src/cli/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/native/src/cli/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/native/src/cli/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
- package/native/src/cli/node_modules/@types/node/console.d.ts +452 -0
- package/native/src/cli/node_modules/@types/node/constants.d.ts +21 -0
- package/native/src/cli/node_modules/@types/node/crypto.d.ts +4545 -0
- package/native/src/cli/node_modules/@types/node/dgram.d.ts +600 -0
- package/native/src/cli/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/native/src/cli/node_modules/@types/node/dns/promises.d.ts +503 -0
- package/native/src/cli/node_modules/@types/node/dns.d.ts +923 -0
- package/native/src/cli/node_modules/@types/node/domain.d.ts +170 -0
- package/native/src/cli/node_modules/@types/node/events.d.ts +976 -0
- package/native/src/cli/node_modules/@types/node/fs/promises.d.ts +1295 -0
- package/native/src/cli/node_modules/@types/node/fs.d.ts +4461 -0
- package/native/src/cli/node_modules/@types/node/globals.d.ts +172 -0
- package/native/src/cli/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- package/native/src/cli/node_modules/@types/node/http.d.ts +2089 -0
- package/native/src/cli/node_modules/@types/node/http2.d.ts +2644 -0
- package/native/src/cli/node_modules/@types/node/https.d.ts +579 -0
- package/native/src/cli/node_modules/@types/node/index.d.ts +97 -0
- package/native/src/cli/node_modules/@types/node/inspector.d.ts +253 -0
- package/native/src/cli/node_modules/@types/node/inspector.generated.d.ts +4052 -0
- package/native/src/cli/node_modules/@types/node/module.d.ts +891 -0
- package/native/src/cli/node_modules/@types/node/net.d.ts +1057 -0
- package/native/src/cli/node_modules/@types/node/os.d.ts +506 -0
- package/native/src/cli/node_modules/@types/node/package.json +145 -0
- package/native/src/cli/node_modules/@types/node/path.d.ts +200 -0
- package/native/src/cli/node_modules/@types/node/perf_hooks.d.ts +968 -0
- package/native/src/cli/node_modules/@types/node/process.d.ts +2084 -0
- package/native/src/cli/node_modules/@types/node/punycode.d.ts +117 -0
- package/native/src/cli/node_modules/@types/node/querystring.d.ts +152 -0
- package/native/src/cli/node_modules/@types/node/readline/promises.d.ts +161 -0
- package/native/src/cli/node_modules/@types/node/readline.d.ts +594 -0
- package/native/src/cli/node_modules/@types/node/repl.d.ts +428 -0
- package/native/src/cli/node_modules/@types/node/sea.d.ts +153 -0
- package/native/src/cli/node_modules/@types/node/sqlite.d.ts +721 -0
- package/native/src/cli/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/native/src/cli/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/native/src/cli/node_modules/@types/node/stream/web.d.ts +622 -0
- package/native/src/cli/node_modules/@types/node/stream.d.ts +1664 -0
- package/native/src/cli/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/native/src/cli/node_modules/@types/node/test.d.ts +2163 -0
- package/native/src/cli/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/native/src/cli/node_modules/@types/node/timers.d.ts +287 -0
- package/native/src/cli/node_modules/@types/node/tls.d.ts +1319 -0
- package/native/src/cli/node_modules/@types/node/trace_events.d.ts +197 -0
- package/native/src/cli/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- package/native/src/cli/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- package/native/src/cli/node_modules/@types/node/ts5.6/index.d.ts +97 -0
- package/native/src/cli/node_modules/@types/node/tty.d.ts +208 -0
- package/native/src/cli/node_modules/@types/node/url.d.ts +984 -0
- package/native/src/cli/node_modules/@types/node/util.d.ts +2606 -0
- package/native/src/cli/node_modules/@types/node/v8.d.ts +920 -0
- package/native/src/cli/node_modules/@types/node/vm.d.ts +1000 -0
- package/native/src/cli/node_modules/@types/node/wasi.d.ts +181 -0
- package/native/src/cli/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/native/src/cli/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/native/src/cli/node_modules/@types/node/web-globals/events.d.ts +97 -0
- package/native/src/cli/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
- package/native/src/cli/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
- package/native/src/cli/node_modules/@types/node/web-globals/storage.d.ts +24 -0
- package/native/src/cli/node_modules/@types/node/worker_threads.d.ts +784 -0
- package/native/src/cli/node_modules/@types/node/zlib.d.ts +747 -0
- package/native/src/cli/node_modules/bun-types/CLAUDE.md +105 -0
- package/native/src/cli/node_modules/bun-types/README.md +33 -0
- package/native/src/cli/node_modules/bun-types/bun.d.ts +8481 -0
- package/native/src/cli/node_modules/bun-types/bun.ns.d.ts +5 -0
- package/native/src/cli/node_modules/bun-types/bundle.d.ts +74 -0
- package/native/src/cli/node_modules/bun-types/deprecated.d.ts +184 -0
- package/native/src/cli/node_modules/bun-types/devserver.d.ts +187 -0
- package/native/src/cli/node_modules/bun-types/docs/README.md +28 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/bytecode.mdx +447 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/css.mdx +1024 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/esbuild.mdx +304 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/executables.mdx +1318 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/fullstack.mdx +1086 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/hot-reloading.mdx +229 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/html-static.mdx +498 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/index.mdx +1840 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/loaders.mdx +451 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/macros.mdx +328 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/minifier.mdx +1286 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/plugins.mdx +477 -0
- package/native/src/cli/node_modules/bun-types/docs/bundler/standalone-html.mdx +314 -0
- package/native/src/cli/node_modules/bun-types/docs/feedback.mdx +75 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/arraybuffer-to-array.mdx +29 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/arraybuffer-to-blob.mdx +26 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/arraybuffer-to-buffer.mdx +27 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/arraybuffer-to-string.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/arraybuffer-to-typedarray.mdx +41 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/blob-to-arraybuffer.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/blob-to-dataview.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/blob-to-stream.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/blob-to-string.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/blob-to-typedarray.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/buffer-to-arraybuffer.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/buffer-to-blob.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/buffer-to-readablestream.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/buffer-to-string.mdx +27 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/buffer-to-typedarray.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/dataview-to-string.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-arraybuffer.mdx +27 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-blob.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-buffer.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-dataview.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-readablestream.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/binary/typedarray-to-string.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/aws-lambda.mdx +204 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/digital-ocean.mdx +161 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/google-cloud-run.mdx +194 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/railway.mdx +145 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/render.mdx +82 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/deployment/vercel.mdx +97 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/astro.mdx +82 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/discordjs.mdx +80 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/docker.mdx +151 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/drizzle.mdx +195 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/elysia.mdx +31 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/express.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/gel.mdx +261 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/hono.mdx +47 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/mongoose.mdx +92 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/neon-drizzle.mdx +234 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/neon-serverless-postgres.mdx +60 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/nextjs.mdx +103 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/nuxt.mdx +96 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/pm2.mdx +55 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/prisma-postgres.mdx +169 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/prisma.mdx +164 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/qwik.mdx +114 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/react.mdx +52 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/remix.mdx +97 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/sentry.mdx +54 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/solidstart.mdx +62 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/ssr-react.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/stric.mdx +54 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/sveltekit.mdx +138 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/systemd.mdx +114 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/tanstack-start.mdx +791 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/upstash.mdx +87 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/ecosystem/vite.mdx +77 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/html-rewriter/extract-links.mdx +71 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/html-rewriter/extract-social-meta.mdx +97 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/cluster.mdx +69 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/fetch-unix.mdx +35 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/fetch.mdx +26 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/file-uploads.mdx +97 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/hot.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/proxy.mdx +50 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/server.mdx +48 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/simple.mdx +20 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/stream-file.mdx +50 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/stream-iterator.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/stream-node-streams-in-bun.mdx +22 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/http/tls.mdx +32 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/index.mdx +10 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add-dev.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add-git.mdx +40 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add-optional.mdx +27 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add-peer.mdx +45 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add-tarball.mdx +35 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/add.mdx +44 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/azure-artifacts.mdx +76 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/cicd.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/custom-registry.mdx +32 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/from-npm-install-to-bun-install.mdx +230 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/git-diff-bun-lockfile.mdx +48 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/jfrog-artifactory.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/npm-alias.mdx +25 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/registry-scope.mdx +40 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/trusted.mdx +52 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/workspaces.mdx +70 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/install/yarnlock.mdx +51 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/argv.mdx +66 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/ctrl-c.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/ipc.mdx +69 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/nanoseconds.mdx +15 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/os-signals.mdx +31 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/spawn-stderr.mdx +34 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/spawn-stdout.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/spawn.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/process/stdin.mdx +62 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/arraybuffer.mdx +30 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/buffer.mdx +21 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/exists.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/json.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/mime.mdx +22 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/stream.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/string.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/uint8array.mdx +23 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/read-file/watch.mdx +66 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/build-time-constants.mdx +295 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/cicd.mdx +45 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/codesign-macos-executable.mdx +61 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/define-constant.mdx +149 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/delete-directory.mdx +39 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/delete-file.mdx +21 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/heap-snapshot.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/import-html.mdx +15 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/import-json.mdx +46 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/import-json5.mdx +74 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/import-toml.mdx +32 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/import-yaml.mdx +104 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/read-env.mdx +37 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/set-env.mdx +51 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/shell.mdx +42 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/timezone.mdx +38 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/tsconfig-paths.mdx +31 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/typescript.mdx +51 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/vscode-debugger.mdx +47 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/runtime/web-debugger.mdx +103 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/node-readable-to-arraybuffer.mdx +13 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/node-readable-to-blob.mdx +13 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/node-readable-to-json.mdx +14 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/node-readable-to-string.mdx +14 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/node-readable-to-uint8array.mdx +13 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-array.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-arraybuffer.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-blob.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-buffer.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-json.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-string.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/streams/to-typedarray.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/bail.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/concurrent-test-glob.mdx +146 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/coverage-threshold.mdx +67 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/coverage.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/happy-dom.mdx +73 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/migrate-from-jest.mdx +125 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/mock-clock.mdx +50 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/mock-functions.mdx +70 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/rerun-each.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/run-tests.mdx +116 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/skip-tests.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/snapshot.mdx +102 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/spy-on.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/svelte-test.mdx +113 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/testing-library.mdx +93 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/timeout.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/todo-tests.mdx +74 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/update-snapshots.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/test/watch-mode.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/base64.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/deep-equals.mdx +41 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/deflate.mdx +20 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/detect-bun.mdx +28 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/entrypoint.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/escape-html.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/file-url-to-path.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/gzip.mdx +20 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/hash-a-password.mdx +56 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/import-meta-dir.mdx +15 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/import-meta-file.mdx +15 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/import-meta-path.mdx +15 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/javascript-uuid.mdx +25 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/main.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/path-to-file-url.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/sleep.mdx +24 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/upgrade.mdx +93 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/version.mdx +23 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/util/which-path-to-executable-bin.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/websocket/compression.mdx +33 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/websocket/context.mdx +79 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/websocket/pubsub.mdx +43 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/websocket/simple.mdx +38 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/append.mdx +54 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/basic.mdx +46 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/blob.mdx +30 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/cat.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/file-cp.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/filesink.mdx +54 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/response.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/stdout.mdx +23 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/stream.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/guides/write-file/unlink.mdx +18 -0
- package/native/src/cli/node_modules/bun-types/docs/index.mdx +133 -0
- package/native/src/cli/node_modules/bun-types/docs/installation.mdx +372 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/bunx.mdx +91 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/catalogs.mdx +292 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/add.mdx +179 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/audit.mdx +60 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/info.mdx +70 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/install.mdx +591 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/link.mdx +61 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/outdated.mdx +197 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/patch.mdx +69 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/pm.mdx +323 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/publish.mdx +131 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/remove.mdx +16 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/update.mdx +140 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/cli/why.mdx +84 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/filter.mdx +127 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/global-cache.mdx +72 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/isolated-installs.mdx +220 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/lifecycle.mdx +64 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/lockfile.mdx +64 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/npmrc.mdx +245 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/overrides.mdx +83 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/scopes-registries.mdx +35 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/security-scanner-api.mdx +95 -0
- package/native/src/cli/node_modules/bun-types/docs/pm/workspaces.mdx +115 -0
- package/native/src/cli/node_modules/bun-types/docs/project/benchmarking.mdx +296 -0
- package/native/src/cli/node_modules/bun-types/docs/project/bindgen.mdx +223 -0
- package/native/src/cli/node_modules/bun-types/docs/project/building-windows.mdx +143 -0
- package/native/src/cli/node_modules/bun-types/docs/project/contributing.mdx +366 -0
- package/native/src/cli/node_modules/bun-types/docs/project/feedback.mdx +20 -0
- package/native/src/cli/node_modules/bun-types/docs/project/license.mdx +78 -0
- package/native/src/cli/node_modules/bun-types/docs/project/roadmap.mdx +8 -0
- package/native/src/cli/node_modules/bun-types/docs/quickstart.mdx +251 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/archive.mdx +452 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/auto-install.mdx +97 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/binary-data.mdx +846 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/bun-apis.mdx +59 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/bunfig.mdx +754 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/c-compiler.mdx +204 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/child-process.mdx +659 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/color.mdx +267 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/console.mdx +67 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/cookies.mdx +454 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/debugger.mdx +335 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/environment-variables.mdx +231 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/ffi.mdx +567 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/file-io.mdx +306 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/file-system-router.mdx +118 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/file-types.mdx +482 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/glob.mdx +181 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/globals.mdx +72 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/hashing.mdx +315 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/html-rewriter.mdx +333 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/cookies.mdx +79 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/error-handling.mdx +40 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/metrics.mdx +36 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/routing.mdx +289 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/server.mdx +645 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/tls.mdx +101 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/http/websockets.mdx +414 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/index.mdx +223 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/json5.mdx +271 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/jsonl.mdx +188 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/jsx.mdx +115 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/markdown.mdx +344 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/module-resolution.mdx +374 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/networking/dns.mdx +111 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/networking/fetch.mdx +484 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/networking/tcp.mdx +239 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/networking/udp.mdx +180 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/node-api.mdx +19 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/nodejs-compat.mdx +468 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/plugins.mdx +419 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/redis.mdx +583 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/repl.mdx +176 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/s3.mdx +881 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/secrets.mdx +340 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/semver.mdx +57 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/shell.mdx +637 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/sql.mdx +1404 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/sqlite.mdx +721 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/streams.mdx +232 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/templating/create.mdx +269 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/templating/init.mdx +58 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/transpiler.mdx +288 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/typescript.mdx +58 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/utils.mdx +1010 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/watch-mode.mdx +161 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/web-apis.mdx +29 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/workers.mdx +314 -0
- package/native/src/cli/node_modules/bun-types/docs/runtime/yaml.mdx +469 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/add.mdx +166 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/build.mdx +197 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/bunx.mdx +49 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/feedback.mdx +17 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/init.mdx +84 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/install.mdx +173 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/link.mdx +163 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/outdated.mdx +140 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/patch.mdx +171 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/publish.mdx +198 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/remove.mdx +146 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/run.mdx +305 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/test.mdx +105 -0
- package/native/src/cli/node_modules/bun-types/docs/snippets/cli/update.mdx +144 -0
- package/native/src/cli/node_modules/bun-types/docs/test/code-coverage.mdx +409 -0
- package/native/src/cli/node_modules/bun-types/docs/test/configuration.mdx +520 -0
- package/native/src/cli/node_modules/bun-types/docs/test/dates-times.mdx +129 -0
- package/native/src/cli/node_modules/bun-types/docs/test/discovery.mdx +90 -0
- package/native/src/cli/node_modules/bun-types/docs/test/dom.mdx +226 -0
- package/native/src/cli/node_modules/bun-types/docs/test/index.mdx +409 -0
- package/native/src/cli/node_modules/bun-types/docs/test/lifecycle.mdx +366 -0
- package/native/src/cli/node_modules/bun-types/docs/test/mocks.mdx +637 -0
- package/native/src/cli/node_modules/bun-types/docs/test/reporters.mdx +126 -0
- package/native/src/cli/node_modules/bun-types/docs/test/runtime-behavior.mdx +342 -0
- package/native/src/cli/node_modules/bun-types/docs/test/snapshots.mdx +434 -0
- package/native/src/cli/node_modules/bun-types/docs/test/writing-tests.mdx +672 -0
- package/native/src/cli/node_modules/bun-types/docs/typescript.mdx +54 -0
- package/native/src/cli/node_modules/bun-types/extensions.d.ts +40 -0
- package/native/src/cli/node_modules/bun-types/fetch.d.ts +79 -0
- package/native/src/cli/node_modules/bun-types/ffi.d.ts +1154 -0
- package/native/src/cli/node_modules/bun-types/globals.d.ts +2067 -0
- package/native/src/cli/node_modules/bun-types/html-rewriter.d.ts +186 -0
- package/native/src/cli/node_modules/bun-types/index.d.ts +32 -0
- package/native/src/cli/node_modules/bun-types/jsc.d.ts +233 -0
- package/native/src/cli/node_modules/bun-types/jsx.d.ts +11 -0
- package/native/src/cli/node_modules/bun-types/overrides.d.ts +376 -0
- package/native/src/cli/node_modules/bun-types/package.json +37 -0
- package/native/src/cli/node_modules/bun-types/redis.d.ts +3352 -0
- package/native/src/cli/node_modules/bun-types/s3.d.ts +1335 -0
- package/native/src/cli/node_modules/bun-types/security.d.ts +101 -0
- package/native/src/cli/node_modules/bun-types/serve.d.ts +1296 -0
- package/native/src/cli/node_modules/bun-types/shell.d.ts +380 -0
- package/native/src/cli/node_modules/bun-types/sql.d.ts +887 -0
- package/native/src/cli/node_modules/bun-types/sqlite.d.ts +1322 -0
- package/native/src/cli/node_modules/bun-types/test-globals.d.ts +22 -0
- package/native/src/cli/node_modules/bun-types/test.d.ts +2392 -0
- package/native/src/cli/node_modules/bun-types/vendor/expect-type/branding.d.ts +283 -0
- package/native/src/cli/node_modules/bun-types/vendor/expect-type/index.d.ts +1207 -0
- package/native/src/cli/node_modules/bun-types/vendor/expect-type/messages.d.ts +395 -0
- package/native/src/cli/node_modules/bun-types/vendor/expect-type/overloads.d.ts +669 -0
- package/native/src/cli/node_modules/bun-types/vendor/expect-type/utils.d.ts +431 -0
- package/native/src/cli/node_modules/bun-types/wasm.d.ts +193 -0
- package/native/src/cli/node_modules/esbuild/LICENSE.md +21 -0
- package/native/src/cli/node_modules/esbuild/README.md +3 -0
- package/native/src/cli/node_modules/esbuild/bin/esbuild +223 -0
- package/native/src/cli/node_modules/esbuild/install.js +289 -0
- package/native/src/cli/node_modules/esbuild/lib/main.d.ts +716 -0
- package/native/src/cli/node_modules/esbuild/lib/main.js +2532 -0
- package/native/src/cli/node_modules/esbuild/package.json +49 -0
- package/native/src/cli/node_modules/typescript/LICENSE.txt +55 -0
- package/native/src/cli/node_modules/typescript/README.md +50 -0
- package/native/src/cli/node_modules/typescript/SECURITY.md +41 -0
- package/native/src/cli/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- package/native/src/cli/node_modules/typescript/bin/tsc +2 -0
- package/native/src/cli/node_modules/typescript/bin/tsserver +2 -0
- package/native/src/cli/node_modules/typescript/lib/_tsc.js +133818 -0
- package/native/src/cli/node_modules/typescript/lib/_tsserver.js +659 -0
- package/native/src/cli/node_modules/typescript/lib/_typingsInstaller.js +222 -0
- package/native/src/cli/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/lib.d.ts +22 -0
- package/native/src/cli/node_modules/typescript/lib/lib.decorators.d.ts +384 -0
- package/native/src/cli/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
- package/native/src/cli/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +41 -0
- package/native/src/cli/node_modules/typescript/lib/lib.dom.d.ts +39429 -0
- package/native/src/cli/node_modules/typescript/lib/lib.dom.iterable.d.ts +571 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.iterable.d.ts +605 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +21 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.d.ts +26 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +53 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.bigint.d.ts +765 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +99 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.string.d.ts +44 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +41 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2021.weakref.d.ts +78 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.d.ts +25 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.error.d.ts +75 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.intl.d.ts +145 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +65 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.collection.d.ts +29 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.d.ts +26 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.object.d.ts +29 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.promise.d.ts +35 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.regexp.d.ts +25 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +68 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es2024.string.d.ts +29 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es5.d.ts +4601 -0
- package/native/src/cli/node_modules/typescript/lib/lib.es6.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.collection.d.ts +96 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.d.ts +29 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.disposable.d.ts +193 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.error.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.float16.d.ts +445 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.iterator.d.ts +148 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.promise.d.ts +34 -0
- package/native/src/cli/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +25 -0
- package/native/src/cli/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
- package/native/src/cli/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +41 -0
- package/native/src/cli/node_modules/typescript/lib/lib.webworker.d.ts +13150 -0
- package/native/src/cli/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
- package/native/src/cli/node_modules/typescript/lib/lib.webworker.iterable.d.ts +340 -0
- package/native/src/cli/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/tsc.js +8 -0
- package/native/src/cli/node_modules/typescript/lib/tsserver.js +8 -0
- package/native/src/cli/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
- package/native/src/cli/node_modules/typescript/lib/tsserverlibrary.js +21 -0
- package/native/src/cli/node_modules/typescript/lib/typesMap.json +497 -0
- package/native/src/cli/node_modules/typescript/lib/typescript.d.ts +11437 -0
- package/native/src/cli/node_modules/typescript/lib/typescript.js +200276 -0
- package/native/src/cli/node_modules/typescript/lib/typingsInstaller.js +8 -0
- package/native/src/cli/node_modules/typescript/lib/watchGuard.js +53 -0
- package/native/src/cli/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
- package/native/src/cli/node_modules/typescript/package.json +120 -0
- package/native/src/cli/node_modules/undici-types/LICENSE +21 -0
- package/native/src/cli/node_modules/undici-types/README.md +6 -0
- package/native/src/cli/node_modules/undici-types/agent.d.ts +31 -0
- package/native/src/cli/node_modules/undici-types/api.d.ts +43 -0
- package/native/src/cli/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/native/src/cli/node_modules/undici-types/cache.d.ts +36 -0
- package/native/src/cli/node_modules/undici-types/client.d.ts +108 -0
- package/native/src/cli/node_modules/undici-types/connector.d.ts +34 -0
- package/native/src/cli/node_modules/undici-types/content-type.d.ts +21 -0
- package/native/src/cli/node_modules/undici-types/cookies.d.ts +28 -0
- package/native/src/cli/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/native/src/cli/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/native/src/cli/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/native/src/cli/node_modules/undici-types/errors.d.ts +149 -0
- package/native/src/cli/node_modules/undici-types/eventsource.d.ts +61 -0
- package/native/src/cli/node_modules/undici-types/fetch.d.ts +209 -0
- package/native/src/cli/node_modules/undici-types/file.d.ts +39 -0
- package/native/src/cli/node_modules/undici-types/filereader.d.ts +54 -0
- package/native/src/cli/node_modules/undici-types/formdata.d.ts +108 -0
- package/native/src/cli/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/native/src/cli/node_modules/undici-types/global-origin.d.ts +7 -0
- package/native/src/cli/node_modules/undici-types/handlers.d.ts +15 -0
- package/native/src/cli/node_modules/undici-types/header.d.ts +4 -0
- package/native/src/cli/node_modules/undici-types/index.d.ts +71 -0
- package/native/src/cli/node_modules/undici-types/interceptors.d.ts +17 -0
- package/native/src/cli/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/native/src/cli/node_modules/undici-types/mock-client.d.ts +25 -0
- package/native/src/cli/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/native/src/cli/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/native/src/cli/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/native/src/cli/node_modules/undici-types/package.json +55 -0
- package/native/src/cli/node_modules/undici-types/patch.d.ts +33 -0
- package/native/src/cli/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/native/src/cli/node_modules/undici-types/pool.d.ts +39 -0
- package/native/src/cli/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/native/src/cli/node_modules/undici-types/readable.d.ts +65 -0
- package/native/src/cli/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/native/src/cli/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/native/src/cli/node_modules/undici-types/util.d.ts +18 -0
- package/native/src/cli/node_modules/undici-types/webidl.d.ts +228 -0
- package/native/src/cli/node_modules/undici-types/websocket.d.ts +150 -0
- package/native/src/platform/darwin/backend_bootstrap.zc +1 -1
- package/native/src/platform/darwin/bootstrap.zc +1 -1
- package/native/src/platform/darwin/platform.zc +22 -0
- package/native/src/platform/darwin/webview.zc +158 -3
- package/native/src/platform/darwin/webview_bootstrap.zc +2 -2
- package/native/src/platform/darwin/window.zc +264 -0
- package/native/src/platform/windows/backend_bootstrap.zc +1 -1
- package/native/src/platform/windows/bootstrap.zc +1 -1
- package/native/src/platform/windows/platform.zc +27 -1
- package/native/src/platform/windows/webview.zc +444 -2
- package/native/src/platform/windows/webview_bootstrap.zc +2 -2
- package/native/src/platform/windows/window.zc +31 -0
- package/native/vendor/quickjs-ng/README.md +24 -0
- package/native/vendor/quickjs-ng/docs/.nvmrc +1 -0
- package/native/vendor/quickjs-ng/docs/babel.config.js +3 -0
- package/native/vendor/quickjs-ng/docs/docs/building.md +63 -0
- package/native/vendor/quickjs-ng/docs/docs/cli.md +130 -0
- package/native/vendor/quickjs-ng/docs/docs/developer-guide/_category_.json +7 -0
- package/native/vendor/quickjs-ng/docs/docs/developer-guide/api.md +3 -0
- package/native/vendor/quickjs-ng/docs/docs/developer-guide/internals.md +117 -0
- package/native/vendor/quickjs-ng/docs/docs/developer-guide/intro.md +113 -0
- package/native/vendor/quickjs-ng/docs/docs/diff.md +68 -0
- package/native/vendor/quickjs-ng/docs/docs/es_features.md +11 -0
- package/native/vendor/quickjs-ng/docs/docs/installation.md +34 -0
- package/native/vendor/quickjs-ng/docs/docs/intro.md +33 -0
- package/native/vendor/quickjs-ng/docs/docs/projects.md +67 -0
- package/native/vendor/quickjs-ng/docs/docs/stdlib.md +605 -0
- package/native/vendor/quickjs-ng/docs/docs/supported_platforms.md +20 -0
- package/native/vendor/quickjs-ng/docs/docusaurus.config.js +114 -0
- package/native/vendor/quickjs-ng/docs/package-lock.json +14656 -0
- package/native/vendor/quickjs-ng/docs/package.json +42 -0
- package/native/vendor/quickjs-ng/docs/sidebars.js +20 -0
- package/native/vendor/quickjs-ng/docs/src/css/custom.css +30 -0
- package/native/vendor/quickjs-ng/docs/static/.nojekyll +0 -0
- package/native/vendor/quickjs-ng/docs/static/img/favicon.ico +0 -0
- package/native/vendor/quickjs-ng/test262-fast.conf +132 -0
- package/native/vendor/quickjs-ng/test262.conf +416 -0
- package/native/vendor/quickjs-ng/test262_errors.txt +93 -0
- package/package.json +1 -1
- package/src/build-config.ts +6 -0
- package/src/build.ts +2 -1
- package/src/config.ts +9 -0
- package/src/package.ts +20 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"private": true,
|
|
3
|
+
"scripts": {
|
|
4
|
+
"docusaurus": "docusaurus",
|
|
5
|
+
"start": "docusaurus start",
|
|
6
|
+
"build": "docusaurus build",
|
|
7
|
+
"swizzle": "docusaurus swizzle",
|
|
8
|
+
"deploy": "docusaurus deploy",
|
|
9
|
+
"clear": "docusaurus clear",
|
|
10
|
+
"serve": "docusaurus serve",
|
|
11
|
+
"write-translations": "docusaurus write-translations",
|
|
12
|
+
"write-heading-ids": "docusaurus write-heading-ids"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@docusaurus/core": "3.5.2",
|
|
16
|
+
"@docusaurus/preset-classic": "3.5.2",
|
|
17
|
+
"@mdx-js/react": "3.0.1",
|
|
18
|
+
"clsx": "2.1.1",
|
|
19
|
+
"prism-react-renderer": "2.4.0",
|
|
20
|
+
"react": "18.3.1",
|
|
21
|
+
"react-dom": "18.3.1"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@docusaurus/module-type-aliases": "3.5.2",
|
|
25
|
+
"@docusaurus/types": "3.5.2"
|
|
26
|
+
},
|
|
27
|
+
"browserslist": {
|
|
28
|
+
"production": [
|
|
29
|
+
">0.5%",
|
|
30
|
+
"not dead",
|
|
31
|
+
"not op_mini all"
|
|
32
|
+
],
|
|
33
|
+
"development": [
|
|
34
|
+
"last 3 chrome version",
|
|
35
|
+
"last 3 firefox version",
|
|
36
|
+
"last 5 safari version"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=18.0"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Creating a sidebar enables you to:
|
|
3
|
+
- create an ordered group of docs
|
|
4
|
+
- render a sidebar for each doc of that group
|
|
5
|
+
- provide next/previous navigation
|
|
6
|
+
|
|
7
|
+
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
8
|
+
|
|
9
|
+
Create as many sidebars as you want.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
// @ts-check
|
|
13
|
+
|
|
14
|
+
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
15
|
+
const sidebars = {
|
|
16
|
+
// By default, Docusaurus generates a sidebar from the docs folder structure
|
|
17
|
+
docsSidebar: [{type: 'autogenerated', dirName: '.'}],
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export default sidebars;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Any CSS included here will be global. The classic template
|
|
3
|
+
* bundles Infima by default. Infima is a CSS framework designed to
|
|
4
|
+
* work well for content-centric websites.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* You can override the default Infima variables here. */
|
|
8
|
+
:root {
|
|
9
|
+
--ifm-color-primary: #2e8555;
|
|
10
|
+
--ifm-color-primary-dark: #29784c;
|
|
11
|
+
--ifm-color-primary-darker: #277148;
|
|
12
|
+
--ifm-color-primary-darkest: #205d3b;
|
|
13
|
+
--ifm-color-primary-light: #33925d;
|
|
14
|
+
--ifm-color-primary-lighter: #359962;
|
|
15
|
+
--ifm-color-primary-lightest: #3cad6e;
|
|
16
|
+
--ifm-code-font-size: 95%;
|
|
17
|
+
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/* For readability concerns, you should choose a lighter palette in dark mode. */
|
|
21
|
+
[data-theme='dark'] {
|
|
22
|
+
--ifm-color-primary: #25c2a0;
|
|
23
|
+
--ifm-color-primary-dark: #21af90;
|
|
24
|
+
--ifm-color-primary-darker: #1fa588;
|
|
25
|
+
--ifm-color-primary-darkest: #1a8870;
|
|
26
|
+
--ifm-color-primary-light: #29d5b0;
|
|
27
|
+
--ifm-color-primary-lighter: #32d8b4;
|
|
28
|
+
--ifm-color-primary-lightest: #4fddbf;
|
|
29
|
+
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
|
30
|
+
}
|
|
File without changes
|
|
Binary file
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
[exclude]
|
|
2
|
+
# list excluded tests and directories here for faster operation
|
|
3
|
+
|
|
4
|
+
# lengthy constructed regexp (>500 ms)
|
|
5
|
+
test262/test/annexB/built-ins/RegExp/RegExp-leading-escape-BMP.js
|
|
6
|
+
test262/test/annexB/built-ins/RegExp/RegExp-trailing-escape-BMP.js
|
|
7
|
+
|
|
8
|
+
# slow notifications (> 600 ms)
|
|
9
|
+
test262/test/built-ins/Atomics/notify/notify-in-order-one-time.js
|
|
10
|
+
test262/test/built-ins/Atomics/notify/notify-in-order.js
|
|
11
|
+
test262/test/built-ins/Atomics/wait/bigint/waiterlist-order-of-operations-is-fifo.js
|
|
12
|
+
test262/test/built-ins/Atomics/wait/waiterlist-order-of-operations-is-fifo.js
|
|
13
|
+
|
|
14
|
+
# lengthy constructed regexp (>200 ms)
|
|
15
|
+
test262/test/built-ins/RegExp/CharacterClassEscapes/character-class-non-digit-class-escape-flags-u.js
|
|
16
|
+
test262/test/built-ins/RegExp/CharacterClassEscapes/character-class-non-digit-class-escape-plus-quantifier-flags-u.js
|
|
17
|
+
test262/test/built-ins/RegExp/CharacterClassEscapes/character-class-non-whitespace-class-escape-flags-u.js
|
|
18
|
+
test262/test/built-ins/RegExp/CharacterClassEscapes/character-class-non-whitespace-class-escape-plus-quantifier-flags-u.js
|
|
19
|
+
test262/test/built-ins/RegExp/CharacterClassEscapes/character-class-non-word-class-escape-flags-u.js
|
|
20
|
+
test262/test/built-ins/RegExp/CharacterClassEscapes/character-class-non-word-class-escape-plus-quantifier-flags-u.js
|
|
21
|
+
test262/test/built-ins/RegExp/character-class-escape-non-whitespace.js
|
|
22
|
+
|
|
23
|
+
# 417 lengty tests with huge constructed regexp (>200 ms)
|
|
24
|
+
test262/test/built-ins/RegExp/property-escapes/generated/
|
|
25
|
+
|
|
26
|
+
# lengthy constructed URLS (>200 ms)
|
|
27
|
+
test262/test/built-ins/decodeURI/S15.1.3.1_A1.2_T1.js
|
|
28
|
+
test262/test/built-ins/decodeURI/S15.1.3.1_A1.2_T2.js
|
|
29
|
+
test262/test/built-ins/decodeURI/S15.1.3.1_A1.10_T1.js
|
|
30
|
+
test262/test/built-ins/decodeURI/S15.1.3.1_A1.11_T1.js
|
|
31
|
+
test262/test/built-ins/decodeURI/S15.1.3.1_A1.11_T2.js
|
|
32
|
+
test262/test/built-ins/decodeURI/S15.1.3.1_A1.12_T1.js
|
|
33
|
+
test262/test/built-ins/decodeURI/S15.1.3.1_A1.12_T2.js
|
|
34
|
+
test262/test/built-ins/decodeURI/S15.1.3.1_A1.12_T3.js
|
|
35
|
+
test262/test/built-ins/decodeURI/S15.1.3.1_A2.5_T1.js
|
|
36
|
+
test262/test/built-ins/decodeURIComponent/S15.1.3.2_A1.2_T1.js
|
|
37
|
+
test262/test/built-ins/decodeURIComponent/S15.1.3.2_A1.2_T2.js
|
|
38
|
+
test262/test/built-ins/decodeURIComponent/S15.1.3.2_A1.10_T1.js
|
|
39
|
+
test262/test/built-ins/decodeURIComponent/S15.1.3.2_A1.11_T1.js
|
|
40
|
+
test262/test/built-ins/decodeURIComponent/S15.1.3.2_A1.11_T2.js
|
|
41
|
+
test262/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T1.js
|
|
42
|
+
test262/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T2.js
|
|
43
|
+
test262/test/built-ins/decodeURIComponent/S15.1.3.2_A1.12_T3.js
|
|
44
|
+
test262/test/built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1.js
|
|
45
|
+
|
|
46
|
+
# lengthy comment tests
|
|
47
|
+
test262/test/language/comments/S7.4_A5.js
|
|
48
|
+
test262/test/language/comments/S7.4_A6.js
|
|
49
|
+
|
|
50
|
+
# lengthy unicode level tests
|
|
51
|
+
test262/test/language/identifiers/start-unicode-5.2.0-class-escaped.js
|
|
52
|
+
test262/test/language/identifiers/start-unicode-5.2.0-class.js
|
|
53
|
+
test262/test/language/identifiers/start-unicode-8.0.0-class-escaped.js
|
|
54
|
+
test262/test/language/identifiers/start-unicode-8.0.0-class.js
|
|
55
|
+
test262/test/language/identifiers/start-unicode-9.0.0-class-escaped.js
|
|
56
|
+
test262/test/language/identifiers/start-unicode-9.0.0-class.js
|
|
57
|
+
test262/test/language/identifiers/start-unicode-10.0.0-class-escaped.js
|
|
58
|
+
test262/test/language/identifiers/start-unicode-10.0.0-class.js
|
|
59
|
+
test262/test/language/identifiers/start-unicode-13.0.0-class-escaped.js
|
|
60
|
+
test262/test/language/identifiers/start-unicode-13.0.0-class.js
|
|
61
|
+
test262/test/language/identifiers/start-unicode-15.0.0-class-escaped.js
|
|
62
|
+
test262/test/language/identifiers/start-unicode-15.0.0-class.js
|
|
63
|
+
|
|
64
|
+
# Atomics tests with 2 second delays
|
|
65
|
+
test262/test/built-ins/Atomics/notify/bigint/notify-all-on-loc.js
|
|
66
|
+
test262/test/built-ins/Atomics/notify/negative-count.js
|
|
67
|
+
test262/test/built-ins/Atomics/notify/notify-all-on-loc.js
|
|
68
|
+
test262/test/built-ins/Atomics/notify/notify-all.js
|
|
69
|
+
test262/test/built-ins/Atomics/notify/notify-nan.js
|
|
70
|
+
test262/test/built-ins/Atomics/notify/notify-one.js
|
|
71
|
+
test262/test/built-ins/Atomics/notify/notify-two.js
|
|
72
|
+
test262/test/built-ins/Atomics/notify/notify-zero.js
|
|
73
|
+
|
|
74
|
+
# Atomics tests with 400 millisecond delays
|
|
75
|
+
test262/test/built-ins/Atomics/wait/bigint/no-spurious-wakeup-no-operation.js
|
|
76
|
+
test262/test/built-ins/Atomics/wait/bigint/no-spurious-wakeup-on-add.js
|
|
77
|
+
test262/test/built-ins/Atomics/wait/bigint/no-spurious-wakeup-on-and.js
|
|
78
|
+
test262/test/built-ins/Atomics/wait/bigint/no-spurious-wakeup-on-compareExchange.js
|
|
79
|
+
test262/test/built-ins/Atomics/wait/bigint/no-spurious-wakeup-on-exchange.js
|
|
80
|
+
test262/test/built-ins/Atomics/wait/bigint/no-spurious-wakeup-on-or.js
|
|
81
|
+
test262/test/built-ins/Atomics/wait/bigint/no-spurious-wakeup-on-store.js
|
|
82
|
+
test262/test/built-ins/Atomics/wait/bigint/no-spurious-wakeup-on-sub.js
|
|
83
|
+
test262/test/built-ins/Atomics/wait/bigint/no-spurious-wakeup-on-xor.js
|
|
84
|
+
test262/test/built-ins/Atomics/wait/no-spurious-wakeup-no-operation.js
|
|
85
|
+
test262/test/built-ins/Atomics/wait/no-spurious-wakeup-on-add.js
|
|
86
|
+
test262/test/built-ins/Atomics/wait/no-spurious-wakeup-on-and.js
|
|
87
|
+
test262/test/built-ins/Atomics/wait/no-spurious-wakeup-on-compareExchange.js
|
|
88
|
+
test262/test/built-ins/Atomics/wait/no-spurious-wakeup-on-exchange.js
|
|
89
|
+
test262/test/built-ins/Atomics/wait/no-spurious-wakeup-on-or.js
|
|
90
|
+
test262/test/built-ins/Atomics/wait/no-spurious-wakeup-on-store.js
|
|
91
|
+
test262/test/built-ins/Atomics/wait/no-spurious-wakeup-on-sub.js
|
|
92
|
+
test262/test/built-ins/Atomics/wait/no-spurious-wakeup-on-xor.js
|
|
93
|
+
|
|
94
|
+
# Atomics tests with 200 millisecond delays
|
|
95
|
+
test262/test/built-ins/Atomics/notify/count-defaults-to-infinity-missing.js
|
|
96
|
+
test262/test/built-ins/Atomics/notify/count-defaults-to-infinity-undefined.js
|
|
97
|
+
test262/test/built-ins/Atomics/notify/notify-renotify-noop.js
|
|
98
|
+
test262/test/built-ins/Atomics/notify/undefined-index-defaults-to-zero.js
|
|
99
|
+
test262/test/built-ins/Atomics/wait/bigint/false-for-timeout-agent.js
|
|
100
|
+
test262/test/built-ins/Atomics/wait/bigint/nan-for-timeout.js
|
|
101
|
+
test262/test/built-ins/Atomics/wait/bigint/negative-timeout-agent.js
|
|
102
|
+
test262/test/built-ins/Atomics/wait/bigint/value-not-equal.js
|
|
103
|
+
test262/test/built-ins/Atomics/wait/bigint/was-woken-before-timeout.js
|
|
104
|
+
test262/test/built-ins/Atomics/wait/false-for-timeout-agent.js
|
|
105
|
+
test262/test/built-ins/Atomics/wait/nan-for-timeout.js
|
|
106
|
+
test262/test/built-ins/Atomics/wait/negative-timeout-agent.js
|
|
107
|
+
test262/test/built-ins/Atomics/wait/null-for-timeout-agent.js
|
|
108
|
+
test262/test/built-ins/Atomics/wait/object-for-timeout-agent.js
|
|
109
|
+
test262/test/built-ins/Atomics/wait/poisoned-object-for-timeout-throws-agent.js
|
|
110
|
+
test262/test/built-ins/Atomics/wait/symbol-for-index-throws-agent.js
|
|
111
|
+
test262/test/built-ins/Atomics/wait/symbol-for-timeout-throws-agent.js
|
|
112
|
+
test262/test/built-ins/Atomics/wait/symbol-for-value-throws-agent.js
|
|
113
|
+
test262/test/built-ins/Atomics/wait/true-for-timeout-agent.js
|
|
114
|
+
test262/test/built-ins/Atomics/wait/undefined-for-timeout.js
|
|
115
|
+
test262/test/built-ins/Atomics/wait/undefined-index-defaults-to-zero.js
|
|
116
|
+
test262/test/built-ins/Atomics/wait/value-not-equal.js
|
|
117
|
+
test262/test/built-ins/Atomics/wait/wait-index-value-not-equal.js
|
|
118
|
+
test262/test/built-ins/Atomics/wait/was-woken-before-timeout.js
|
|
119
|
+
|
|
120
|
+
# lengthy regexp literal construction (>500 ms)
|
|
121
|
+
test262/test/language/literals/regexp/S7.8.5_A1.1_T2.js
|
|
122
|
+
test262/test/language/literals/regexp/S7.8.5_A1.4_T2.js
|
|
123
|
+
test262/test/language/literals/regexp/S7.8.5_A2.1_T2.js
|
|
124
|
+
test262/test/language/literals/regexp/S7.8.5_A2.4_T2.js
|
|
125
|
+
|
|
126
|
+
# lengthy built-ins tests (100-200 ms)
|
|
127
|
+
test262/test/built-ins/Function/prototype/toString/built-in-function-object.js
|
|
128
|
+
test262/test/built-ins/decodeURI/S15.1.3.1_A2.4_T1.js
|
|
129
|
+
test262/test/built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1.js
|
|
130
|
+
test262/test/built-ins/encodeURI/S15.1.3.3_A2.3_T1.js
|
|
131
|
+
test262/test/built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1.js
|
|
132
|
+
test262/test/language/expressions/dynamic-import/await-import-evaluation.js
|
|
@@ -0,0 +1,416 @@
|
|
|
1
|
+
[config]
|
|
2
|
+
# general settings for test262 ES6 version
|
|
3
|
+
|
|
4
|
+
# handle tests tagged as [noStrict]: yes, no, skip
|
|
5
|
+
nostrict=yes
|
|
6
|
+
|
|
7
|
+
# handle tests tagged as [strictOnly]: yes, no, skip
|
|
8
|
+
strict=yes
|
|
9
|
+
|
|
10
|
+
# test mode: default, default-nostrict, default-strict, strict, nostrict, both, all
|
|
11
|
+
mode=default
|
|
12
|
+
|
|
13
|
+
# handle tests flagged as [async]: yes, no, skip
|
|
14
|
+
# for these, load 'harness/doneprintHandle.js' prior to test
|
|
15
|
+
# and expect `print('Test262:AsyncTestComplete')` to be called for
|
|
16
|
+
# successful termination
|
|
17
|
+
async=yes
|
|
18
|
+
|
|
19
|
+
# handle tests flagged as [module]: yes, no, skip
|
|
20
|
+
module=yes
|
|
21
|
+
|
|
22
|
+
# output error messages: yes, no
|
|
23
|
+
verbose=yes
|
|
24
|
+
|
|
25
|
+
# load harness files from this directory
|
|
26
|
+
harnessdir=test262/harness
|
|
27
|
+
|
|
28
|
+
# names of harness include files to skip
|
|
29
|
+
#harnessexclude=
|
|
30
|
+
|
|
31
|
+
# name of the error file for known errors
|
|
32
|
+
errorfile=test262_errors.txt
|
|
33
|
+
|
|
34
|
+
# exclude tests enumerated in this file (see also [exclude] section)
|
|
35
|
+
#excludefile=test262_exclude.txt
|
|
36
|
+
|
|
37
|
+
# enumerate tests from this directory
|
|
38
|
+
testdir=test262/test
|
|
39
|
+
|
|
40
|
+
[features]
|
|
41
|
+
# Standard language features and proposed extensions
|
|
42
|
+
# list the features that are included
|
|
43
|
+
# skipped features are tagged as such to avoid warnings
|
|
44
|
+
# Keep this list alpha-sorted (:sort i in vim)
|
|
45
|
+
|
|
46
|
+
__getter__
|
|
47
|
+
__proto__
|
|
48
|
+
__setter__
|
|
49
|
+
AggregateError
|
|
50
|
+
align-detached-buffer-semantics-with-web-reality
|
|
51
|
+
arbitrary-module-namespace-names
|
|
52
|
+
array-find-from-last
|
|
53
|
+
array-grouping
|
|
54
|
+
Array.fromAsync
|
|
55
|
+
Array.prototype.at
|
|
56
|
+
Array.prototype.flat
|
|
57
|
+
Array.prototype.flatMap
|
|
58
|
+
Array.prototype.includes
|
|
59
|
+
Array.prototype.values
|
|
60
|
+
ArrayBuffer
|
|
61
|
+
arraybuffer-transfer
|
|
62
|
+
arrow-function
|
|
63
|
+
async-functions
|
|
64
|
+
async-iteration
|
|
65
|
+
Atomics.pause=!tcc
|
|
66
|
+
Atomics.waitAsync=skip
|
|
67
|
+
Atomics=!tcc # atomics are broken in recent versions of tcc
|
|
68
|
+
BigInt
|
|
69
|
+
caller
|
|
70
|
+
canonical-tz=skip
|
|
71
|
+
change-array-by-copy
|
|
72
|
+
class
|
|
73
|
+
class-fields-private
|
|
74
|
+
class-fields-private-in
|
|
75
|
+
class-fields-public
|
|
76
|
+
class-methods-private
|
|
77
|
+
class-static-block
|
|
78
|
+
class-static-fields-private
|
|
79
|
+
class-static-fields-public
|
|
80
|
+
class-static-methods-private
|
|
81
|
+
coalesce-expression
|
|
82
|
+
computed-property-names
|
|
83
|
+
const
|
|
84
|
+
cross-realm
|
|
85
|
+
DataView
|
|
86
|
+
DataView.prototype.getFloat32
|
|
87
|
+
DataView.prototype.getFloat64
|
|
88
|
+
DataView.prototype.getInt16
|
|
89
|
+
DataView.prototype.getInt32
|
|
90
|
+
DataView.prototype.getInt8
|
|
91
|
+
DataView.prototype.getUint16
|
|
92
|
+
DataView.prototype.getUint32
|
|
93
|
+
DataView.prototype.setUint8
|
|
94
|
+
decorators=skip
|
|
95
|
+
default-parameters
|
|
96
|
+
destructuring-assignment
|
|
97
|
+
destructuring-binding
|
|
98
|
+
dynamic-import
|
|
99
|
+
error-cause
|
|
100
|
+
Error.isError
|
|
101
|
+
explicit-resource-management=skip
|
|
102
|
+
exponentiation
|
|
103
|
+
export-star-as-namespace-from-module
|
|
104
|
+
FinalizationRegistry
|
|
105
|
+
Float16Array
|
|
106
|
+
Float32Array
|
|
107
|
+
Float64Array
|
|
108
|
+
for-in-order
|
|
109
|
+
for-of
|
|
110
|
+
generators
|
|
111
|
+
globalThis
|
|
112
|
+
hashbang
|
|
113
|
+
host-gc-required=skip
|
|
114
|
+
immutable-arraybuffer
|
|
115
|
+
import-attributes
|
|
116
|
+
import-defer=skip
|
|
117
|
+
import.meta
|
|
118
|
+
Int16Array
|
|
119
|
+
Int32Array
|
|
120
|
+
Int8Array
|
|
121
|
+
Intl-enumeration=skip
|
|
122
|
+
intl-normative-optional=skip
|
|
123
|
+
Intl.DateTimeFormat-datetimestyle=skip
|
|
124
|
+
Intl.DateTimeFormat-dayPeriod=skip
|
|
125
|
+
Intl.DateTimeFormat-extend-timezonename=skip
|
|
126
|
+
Intl.DateTimeFormat-formatRange=skip
|
|
127
|
+
Intl.DateTimeFormat-fractionalSecondDigits=skip
|
|
128
|
+
Intl.DisplayNames-v2=skip
|
|
129
|
+
Intl.DisplayNames=skip
|
|
130
|
+
Intl.DurationFormat=skip
|
|
131
|
+
Intl.ListFormat=skip
|
|
132
|
+
Intl.Locale-info=skip
|
|
133
|
+
Intl.Locale=skip
|
|
134
|
+
Intl.NumberFormat-unified=skip
|
|
135
|
+
Intl.NumberFormat-v3=skip
|
|
136
|
+
Intl.RelativeTimeFormat=skip
|
|
137
|
+
Intl.Segmenter=skip
|
|
138
|
+
IsHTMLDDA
|
|
139
|
+
iterator-helpers
|
|
140
|
+
iterator-sequencing
|
|
141
|
+
joint-iteration
|
|
142
|
+
json-modules
|
|
143
|
+
json-parse-with-source=skip
|
|
144
|
+
json-superset
|
|
145
|
+
legacy-regexp=skip
|
|
146
|
+
let
|
|
147
|
+
logical-assignment-operators
|
|
148
|
+
Map
|
|
149
|
+
Math.sumPrecise
|
|
150
|
+
new.target
|
|
151
|
+
nonextensible-applies-to-private=skip
|
|
152
|
+
numeric-separator-literal
|
|
153
|
+
object-rest
|
|
154
|
+
object-spread
|
|
155
|
+
Object.fromEntries
|
|
156
|
+
Object.hasOwn
|
|
157
|
+
Object.is
|
|
158
|
+
optional-catch-binding
|
|
159
|
+
optional-chaining
|
|
160
|
+
Promise
|
|
161
|
+
promise-try
|
|
162
|
+
promise-with-resolvers
|
|
163
|
+
Promise.allSettled
|
|
164
|
+
Promise.any
|
|
165
|
+
Promise.prototype.finally
|
|
166
|
+
Proxy
|
|
167
|
+
proxy-missing-checks
|
|
168
|
+
Reflect
|
|
169
|
+
Reflect.construct
|
|
170
|
+
Reflect.set
|
|
171
|
+
Reflect.setPrototypeOf
|
|
172
|
+
regexp-dotall
|
|
173
|
+
regexp-duplicate-named-groups=skip
|
|
174
|
+
regexp-lookbehind
|
|
175
|
+
regexp-match-indices
|
|
176
|
+
regexp-modifiers=skip
|
|
177
|
+
regexp-named-groups
|
|
178
|
+
regexp-unicode-property-escapes
|
|
179
|
+
regexp-v-flag
|
|
180
|
+
RegExp.escape
|
|
181
|
+
resizable-arraybuffer
|
|
182
|
+
rest-parameters
|
|
183
|
+
Set
|
|
184
|
+
set-methods
|
|
185
|
+
ShadowRealm=skip
|
|
186
|
+
SharedArrayBuffer
|
|
187
|
+
source-phase-imports-module-source=skip
|
|
188
|
+
source-phase-imports=skip
|
|
189
|
+
stable-array-sort
|
|
190
|
+
stable-typedarray-sort
|
|
191
|
+
string-trimming
|
|
192
|
+
String.fromCodePoint
|
|
193
|
+
String.prototype.at
|
|
194
|
+
String.prototype.endsWith
|
|
195
|
+
String.prototype.includes
|
|
196
|
+
String.prototype.isWellFormed
|
|
197
|
+
String.prototype.matchAll
|
|
198
|
+
String.prototype.replaceAll
|
|
199
|
+
String.prototype.toWellFormed
|
|
200
|
+
String.prototype.trimEnd
|
|
201
|
+
String.prototype.trimStart
|
|
202
|
+
super
|
|
203
|
+
Symbol
|
|
204
|
+
Symbol.asyncIterator
|
|
205
|
+
Symbol.hasInstance
|
|
206
|
+
Symbol.isConcatSpreadable
|
|
207
|
+
Symbol.iterator
|
|
208
|
+
Symbol.match
|
|
209
|
+
Symbol.matchAll
|
|
210
|
+
Symbol.prototype.description
|
|
211
|
+
Symbol.replace
|
|
212
|
+
Symbol.search
|
|
213
|
+
Symbol.species
|
|
214
|
+
Symbol.split
|
|
215
|
+
Symbol.toPrimitive
|
|
216
|
+
Symbol.toStringTag
|
|
217
|
+
Symbol.unscopables
|
|
218
|
+
symbols-as-weakmap-keys
|
|
219
|
+
tail-call-optimization=skip
|
|
220
|
+
template
|
|
221
|
+
Temporal=skip
|
|
222
|
+
top-level-await
|
|
223
|
+
TypedArray
|
|
224
|
+
TypedArray.prototype.at
|
|
225
|
+
u180e
|
|
226
|
+
Uint16Array
|
|
227
|
+
Uint32Array
|
|
228
|
+
Uint8Array
|
|
229
|
+
uint8array-base64=skip
|
|
230
|
+
Uint8ClampedArray
|
|
231
|
+
upsert
|
|
232
|
+
WeakMap
|
|
233
|
+
WeakRef
|
|
234
|
+
WeakSet
|
|
235
|
+
well-formed-json-stringify
|
|
236
|
+
|
|
237
|
+
[exclude]
|
|
238
|
+
# list excluded tests and directories here
|
|
239
|
+
|
|
240
|
+
# intl not supported
|
|
241
|
+
test262/test/intl402/
|
|
242
|
+
|
|
243
|
+
# incompatible with the "caller" feature
|
|
244
|
+
test262/test/built-ins/Function/prototype/restricted-property-caller.js
|
|
245
|
+
test262/test/built-ins/Function/prototype/restricted-property-arguments.js
|
|
246
|
+
test262/test/built-ins/ThrowTypeError/unique-per-realm-function-proto.js
|
|
247
|
+
|
|
248
|
+
# slow tests
|
|
249
|
+
#test262/test/built-ins/RegExp/CharacterClassEscapes/
|
|
250
|
+
#test262/test/built-ins/RegExp/property-escapes/
|
|
251
|
+
|
|
252
|
+
# global variable assignment performance improvement (V8, SpiderMonkey and JavaScriptCore have the same non-compliance)
|
|
253
|
+
test262/test/language/identifier-resolution/assign-to-global-undefined.js
|
|
254
|
+
|
|
255
|
+
# destructuring performance improvements (V8 has the same spec non-compliance)
|
|
256
|
+
test262/test/language/expressions/assignment/S11.13.1_A6_T1.js
|
|
257
|
+
test262/test/language/expressions/assignment/S11.13.1_A6_T2.js
|
|
258
|
+
test262/test/language/expressions/compound-assignment/S11.13.2_A6.1_T1.js
|
|
259
|
+
test262/test/language/expressions/compound-assignment/S11.13.2_A6.2_T1.js
|
|
260
|
+
test262/test/language/expressions/compound-assignment/S11.13.2_A6.3_T1.js
|
|
261
|
+
test262/test/language/expressions/compound-assignment/S11.13.2_A6.4_T1.js
|
|
262
|
+
test262/test/language/expressions/compound-assignment/S11.13.2_A6.5_T1.js
|
|
263
|
+
test262/test/language/expressions/compound-assignment/S11.13.2_A6.6_T1.js
|
|
264
|
+
test262/test/language/expressions/compound-assignment/S11.13.2_A6.7_T1.js
|
|
265
|
+
test262/test/language/expressions/compound-assignment/S11.13.2_A6.8_T1.js
|
|
266
|
+
test262/test/language/expressions/compound-assignment/S11.13.2_A6.9_T1.js
|
|
267
|
+
test262/test/language/expressions/compound-assignment/S11.13.2_A6.10_T1.js
|
|
268
|
+
test262/test/language/expressions/compound-assignment/S11.13.2_A6.11_T1.js
|
|
269
|
+
|
|
270
|
+
# in progress regexp-v-flag support, see https://github.com/quickjs-ng/quickjs/issues/228
|
|
271
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/Basic_Emoji-negative-CharacterClass.js
|
|
272
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/Basic_Emoji-negative-P.js
|
|
273
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/Basic_Emoji-negative-u.js
|
|
274
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/Basic_Emoji.js
|
|
275
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/Emoji_Keycap_Sequence-negative-CharacterClass.js
|
|
276
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/Emoji_Keycap_Sequence-negative-P.js
|
|
277
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/Emoji_Keycap_Sequence-negative-u.js
|
|
278
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/Emoji_Keycap_Sequence.js
|
|
279
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji-negative-CharacterClass.js
|
|
280
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji-negative-P.js
|
|
281
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji-negative-u.js
|
|
282
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji.js
|
|
283
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Flag_Sequence-negative-CharacterClass.js
|
|
284
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Flag_Sequence-negative-P.js
|
|
285
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Flag_Sequence-negative-u.js
|
|
286
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Flag_Sequence.js
|
|
287
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Modifier_Sequence-negative-CharacterClass.js
|
|
288
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Modifier_Sequence-negative-P.js
|
|
289
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Modifier_Sequence-negative-u.js
|
|
290
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Modifier_Sequence.js
|
|
291
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Tag_Sequence-negative-CharacterClass.js
|
|
292
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Tag_Sequence-negative-P.js
|
|
293
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Tag_Sequence-negative-u.js
|
|
294
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_Tag_Sequence.js
|
|
295
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_ZWJ_Sequence-negative-CharacterClass.js
|
|
296
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_ZWJ_Sequence-negative-P.js
|
|
297
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_ZWJ_Sequence-negative-u.js
|
|
298
|
+
test262/test/built-ins/RegExp/property-escapes/generated/strings/RGI_Emoji_ZWJ_Sequence.js
|
|
299
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-difference-character-class-escape.js
|
|
300
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-difference-character-class.js
|
|
301
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-difference-character-property-escape.js
|
|
302
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-difference-character.js
|
|
303
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-difference-property-of-strings-escape.js
|
|
304
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-difference-string-literal.js
|
|
305
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-difference-character-class-escape.js
|
|
306
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-difference-character-class.js
|
|
307
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-difference-character-property-escape.js
|
|
308
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-difference-character.js
|
|
309
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-difference-property-of-strings-escape.js
|
|
310
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-difference-string-literal.js
|
|
311
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-intersection-character-class-escape.js
|
|
312
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-intersection-character-class.js
|
|
313
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-intersection-character-property-escape.js
|
|
314
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-intersection-character.js
|
|
315
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-intersection-property-of-strings-escape.js
|
|
316
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-intersection-string-literal.js
|
|
317
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-union-character-class-escape.js
|
|
318
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-union-character-class.js
|
|
319
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-union-character-property-escape.js
|
|
320
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-union-character.js
|
|
321
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-union-property-of-strings-escape.js
|
|
322
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-escape-union-string-literal.js
|
|
323
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-intersection-character-class-escape.js
|
|
324
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-intersection-character-class.js
|
|
325
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-intersection-character-property-escape.js
|
|
326
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-intersection-character.js
|
|
327
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-intersection-property-of-strings-escape.js
|
|
328
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-intersection-string-literal.js
|
|
329
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-union-character-class-escape.js
|
|
330
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-union-character-class.js
|
|
331
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-union-character-property-escape.js
|
|
332
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-union-character.js
|
|
333
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-union-property-of-strings-escape.js
|
|
334
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-class-union-string-literal.js
|
|
335
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-difference-character-class-escape.js
|
|
336
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-difference-character-class.js
|
|
337
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-difference-character-property-escape.js
|
|
338
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-difference-character.js
|
|
339
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-difference-property-of-strings-escape.js
|
|
340
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-difference-string-literal.js
|
|
341
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-intersection-character-class-escape.js
|
|
342
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-intersection-character-class.js
|
|
343
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-intersection-character-property-escape.js
|
|
344
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-intersection-character.js
|
|
345
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-intersection-property-of-strings-escape.js
|
|
346
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-intersection-string-literal.js
|
|
347
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-difference-character-class-escape.js
|
|
348
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-difference-character-class.js
|
|
349
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-difference-character-property-escape.js
|
|
350
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-difference-character.js
|
|
351
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-difference-property-of-strings-escape.js
|
|
352
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-difference-string-literal.js
|
|
353
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-character-class-escape.js
|
|
354
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-character-class.js
|
|
355
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-character-property-escape.js
|
|
356
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-character.js
|
|
357
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-property-of-strings-escape.js
|
|
358
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-intersection-string-literal.js
|
|
359
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-union-character-class-escape.js
|
|
360
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-union-character-class.js
|
|
361
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-union-character-property-escape.js
|
|
362
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-union-character.js
|
|
363
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-union-property-of-strings-escape.js
|
|
364
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-property-escape-union-string-literal.js
|
|
365
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-union-character-class-escape.js
|
|
366
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-union-character-class.js
|
|
367
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-union-character-property-escape.js
|
|
368
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-union-character.js
|
|
369
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-union-property-of-strings-escape.js
|
|
370
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/character-union-string-literal.js
|
|
371
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-difference-character-class-escape.js
|
|
372
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-difference-character-class.js
|
|
373
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-difference-character-property-escape.js
|
|
374
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-difference-character.js
|
|
375
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-difference-property-of-strings-escape.js
|
|
376
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-difference-string-literal.js
|
|
377
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-intersection-character-class-escape.js
|
|
378
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-intersection-character-class.js
|
|
379
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-intersection-character-property-escape.js
|
|
380
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-intersection-character.js
|
|
381
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-intersection-property-of-strings-escape.js
|
|
382
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-intersection-string-literal.js
|
|
383
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-union-character-class-escape.js
|
|
384
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-union-character-class.js
|
|
385
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-union-character-property-escape.js
|
|
386
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-union-character.js
|
|
387
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-union-property-of-strings-escape.js
|
|
388
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/property-of-strings-escape-union-string-literal.js
|
|
389
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/rgi-emoji-13.1.js
|
|
390
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/rgi-emoji-14.0.js
|
|
391
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/rgi-emoji-15.0.js
|
|
392
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/rgi-emoji-15.1.js
|
|
393
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-difference-character-class-escape.js
|
|
394
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-difference-character-class.js
|
|
395
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-difference-character-property-escape.js
|
|
396
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-difference-character.js
|
|
397
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-difference-property-of-strings-escape.js
|
|
398
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-difference-string-literal.js
|
|
399
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-intersection-character-class-escape.js
|
|
400
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-intersection-character-class.js
|
|
401
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-intersection-character-property-escape.js
|
|
402
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-intersection-character.js
|
|
403
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-intersection-property-of-strings-escape.js
|
|
404
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-intersection-string-literal.js
|
|
405
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-union-character-class-escape.js
|
|
406
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-union-character-class.js
|
|
407
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-union-character-property-escape.js
|
|
408
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-union-character.js
|
|
409
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-union-property-of-strings-escape.js
|
|
410
|
+
test262/test/built-ins/RegExp/unicodeSets/generated/string-literal-union-string-literal.js
|
|
411
|
+
|
|
412
|
+
# frequently broken, sometimes contain engine-dependent tests
|
|
413
|
+
test262/test/staging/
|
|
414
|
+
|
|
415
|
+
[tests]
|
|
416
|
+
# list test files or use config.testdir
|